added variables for storing the window position of the profile window
This commit is contained in:
parent
1ed74b44e2
commit
bae2672ff2
2 changed files with 4 additions and 0 deletions
|
@ -35,9 +35,11 @@ CClient::CClient ( const quint16 iPortNumber ) :
|
|||
vecWindowPosMain (), // empty array
|
||||
vecWindowPosSettings (), // empty array
|
||||
vecWindowPosChat (), // empty array
|
||||
vecWindowPosProfile (), // empty array
|
||||
vecWindowPosConnect (), // empty array
|
||||
bWindowWasShownSettings ( false ),
|
||||
bWindowWasShownChat ( false ),
|
||||
bWindowWasShownProfile ( false ),
|
||||
bWindowWasShownConnect ( false ),
|
||||
Channel ( false ), /* we need a client channel -> "false" */
|
||||
eAudioCompressionType ( CT_OPUS ),
|
||||
|
|
|
@ -289,9 +289,11 @@ public:
|
|||
QByteArray vecWindowPosMain;
|
||||
QByteArray vecWindowPosSettings;
|
||||
QByteArray vecWindowPosChat;
|
||||
QByteArray vecWindowPosProfile;
|
||||
QByteArray vecWindowPosConnect;
|
||||
bool bWindowWasShownSettings;
|
||||
bool bWindowWasShownChat;
|
||||
bool bWindowWasShownProfile;
|
||||
bool bWindowWasShownConnect;
|
||||
|
||||
#ifdef LLCON_VST_PLUGIN
|
||||
|
|
Loading…
Reference in a new issue