-rw-r--r-- | core/apps/embeddedkonsole/commandeditwidget.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/core/apps/embeddedkonsole/commandeditwidget.cpp b/core/apps/embeddedkonsole/commandeditwidget.cpp index 6257d83..c9d41de 100644 --- a/core/apps/embeddedkonsole/commandeditwidget.cpp +++ b/core/apps/embeddedkonsole/commandeditwidget.cpp | |||
@@ -35,25 +35,24 @@ | |||
35 | #include <qvariant.h> | 35 | #include <qvariant.h> |
36 | #include <qtooltip.h> | 36 | #include <qtooltip.h> |
37 | #include <qwhatsthis.h> | 37 | #include <qwhatsthis.h> |
38 | 38 | ||
39 | /* | 39 | /* |
40 | * Constructs a Form1 which is a child of 'parent', with the | 40 | * Constructs a Form1 which is a child of 'parent', with the |
41 | * name 'name' and widget flags set to 'f' | 41 | * name 'name' and widget flags set to 'f' |
42 | */ | 42 | */ |
43 | Form1::Form1( QWidget* parent, const char* name, WFlags fl ) | 43 | Form1::Form1( QWidget* parent, const char* name, WFlags fl ) |
44 | : QWidget( parent, name, fl ) | 44 | : QWidget( parent, name, fl ) |
45 | { | 45 | { |
46 | if ( !name ) | 46 | if ( !name ) |
47 | setName( tr("Form1")); | ||
48 | resize( 596, 480 ); | 47 | resize( 596, 480 ); |
49 | setCaption( tr( "Form1" ) ); | 48 | setCaption( tr( "Form1" ) ); |
50 | Form1Layout = new QGridLayout( this ); | 49 | Form1Layout = new QGridLayout( this ); |
51 | Form1Layout->setSpacing( 6 ); | 50 | Form1Layout->setSpacing( 6 ); |
52 | Form1Layout->setMargin( 11 ); | 51 | Form1Layout->setMargin( 11 ); |
53 | 52 | ||
54 | MyCustomWidget1 = new PlayListSelection( this, "MyCustomWidget1" ); | 53 | MyCustomWidget1 = new PlayListSelection( this, "MyCustomWidget1" ); |
55 | 54 | ||
56 | Form1Layout->addWidget( MyCustomWidget1, 0, 0 ); | 55 | Form1Layout->addWidget( MyCustomWidget1, 0, 0 ); |
57 | } | 56 | } |
58 | 57 | ||
59 | /* | 58 | /* |