added variables for storing the window position of the profile window

This commit is contained in:
Volker Fischer 2015-01-31 08:15:56 +00:00
parent 1ed74b44e2
commit bae2672ff2
2 changed files with 4 additions and 0 deletions

View File

@ -35,9 +35,11 @@ CClient::CClient ( const quint16 iPortNumber ) :
vecWindowPosMain (), // empty array vecWindowPosMain (), // empty array
vecWindowPosSettings (), // empty array vecWindowPosSettings (), // empty array
vecWindowPosChat (), // empty array vecWindowPosChat (), // empty array
vecWindowPosProfile (), // empty array
vecWindowPosConnect (), // empty array vecWindowPosConnect (), // empty array
bWindowWasShownSettings ( false ), bWindowWasShownSettings ( false ),
bWindowWasShownChat ( false ), bWindowWasShownChat ( false ),
bWindowWasShownProfile ( false ),
bWindowWasShownConnect ( false ), bWindowWasShownConnect ( false ),
Channel ( false ), /* we need a client channel -> "false" */ Channel ( false ), /* we need a client channel -> "false" */
eAudioCompressionType ( CT_OPUS ), eAudioCompressionType ( CT_OPUS ),

View File

@ -289,9 +289,11 @@ public:
QByteArray vecWindowPosMain; QByteArray vecWindowPosMain;
QByteArray vecWindowPosSettings; QByteArray vecWindowPosSettings;
QByteArray vecWindowPosChat; QByteArray vecWindowPosChat;
QByteArray vecWindowPosProfile;
QByteArray vecWindowPosConnect; QByteArray vecWindowPosConnect;
bool bWindowWasShownSettings; bool bWindowWasShownSettings;
bool bWindowWasShownChat; bool bWindowWasShownChat;
bool bWindowWasShownProfile;
bool bWindowWasShownConnect; bool bWindowWasShownConnect;
#ifdef LLCON_VST_PLUGIN #ifdef LLCON_VST_PLUGIN