small fix for main window layout, added some test code
This commit is contained in:
parent
ba5b285a73
commit
74b69cc2f9
2 changed files with 14 additions and 3 deletions
|
@ -525,7 +525,7 @@
|
||||||
<item>
|
<item>
|
||||||
<layout class="QVBoxLayout" >
|
<layout class="QVBoxLayout" >
|
||||||
<property name="spacing" >
|
<property name="spacing" >
|
||||||
<number>0</number>
|
<number>3</number>
|
||||||
</property>
|
</property>
|
||||||
<item>
|
<item>
|
||||||
<widget class="QLabel" name="TextAudInFader" >
|
<widget class="QLabel" name="TextAudInFader" >
|
||||||
|
@ -632,7 +632,7 @@
|
||||||
<item>
|
<item>
|
||||||
<layout class="QVBoxLayout" >
|
<layout class="QVBoxLayout" >
|
||||||
<property name="spacing" >
|
<property name="spacing" >
|
||||||
<number>0</number>
|
<number>3</number>
|
||||||
</property>
|
</property>
|
||||||
<property name="leftMargin" >
|
<property name="leftMargin" >
|
||||||
<number>0</number>
|
<number>0</number>
|
||||||
|
@ -725,7 +725,7 @@
|
||||||
<item>
|
<item>
|
||||||
<layout class="QVBoxLayout" >
|
<layout class="QVBoxLayout" >
|
||||||
<property name="spacing" >
|
<property name="spacing" >
|
||||||
<number>0</number>
|
<number>3</number>
|
||||||
</property>
|
</property>
|
||||||
<item>
|
<item>
|
||||||
<widget class="QRadioButton" name="RadioButtonRevSelL" >
|
<widget class="QRadioButton" name="RadioButtonRevSelL" >
|
||||||
|
|
11
src/main.cpp
11
src/main.cpp
|
@ -201,6 +201,17 @@ int main ( int argc, char** argv )
|
||||||
{
|
{
|
||||||
if ( bIsClient )
|
if ( bIsClient )
|
||||||
{
|
{
|
||||||
|
|
||||||
|
/*
|
||||||
|
// TEST run client and server at the same time
|
||||||
|
CServer Server ( strLoggingFileName.c_str(),
|
||||||
|
iPortNumber,
|
||||||
|
strHTMLStatusFileName.c_str(),
|
||||||
|
strHistoryFileName.c_str(),
|
||||||
|
strServerName.c_str() );
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
// client
|
// client
|
||||||
// actual client object
|
// actual client object
|
||||||
CClient Client ( iPortNumber );
|
CClient Client ( iPortNumber );
|
||||||
|
|
Loading…
Reference in a new issue