summaryrefslogtreecommitdiffstats
path: root/krusader/Konfigurator/konfiguratorpage.h
diff options
context:
space:
mode:
Diffstat (limited to 'krusader/Konfigurator/konfiguratorpage.h')
-rw-r--r--krusader/Konfigurator/konfiguratorpage.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/krusader/Konfigurator/konfiguratorpage.h b/krusader/Konfigurator/konfiguratorpage.h
index 5717acb..afcc897 100644
--- a/krusader/Konfigurator/konfiguratorpage.h
+++ b/krusader/Konfigurator/konfiguratorpage.h
@@ -293,25 +293,25 @@ public:
*
* Sample:<br><br>
* TQGroupBox *myGroup = createFrame( i18n( "MyFrameName" ), parentWidget, "frameName" );<br>
- * TQGridLayout *myLayout = createGridLayout( myGroup->tqlayout() );<br>
+ * TQGridLayout *myLayout = createGridLayout( myGroup->layout() );<br>
* myLayout->addWidget( myGroup, 0, 0 );
*
- * @param parent Reference to the parent tqlayout
+ * @param parent Reference to the parent layout
*
* @return reference to the newly created TQGridLayout
*/
TQGridLayout *createGridLayout( TQLayout *parent );
/**
- * Adds a new label to a grid tqlayout.
+ * Adds a new label to a grid layout.
*
* Sample:<br><br>
* TQGroupBox *myGroup = createFrame( i18n( "MyFrameName" ), parentWidget, "frameName" );<br>
- * TQGridLayout *myLayout = createGridLayout( myGroup->tqlayout() );<br>
+ * TQGridLayout *myLayout = createGridLayout( myGroup->layout() );<br>
* addLabel( myLayout, 0, 0, i18n( "Hello world!" ), myGroup, "myLabel" );<br>
* mainLayout->addWidget( myGroup, 0, 0 );
*
- * @param tqlayout The grid tqlayout on which the item will be placed
+ * @param layout The grid layout on which the item will be placed
* @param x the column to which the label will be placed
* @param y the row to which the label will be placed
* @param label the text of the label
@@ -320,7 +320,7 @@ public:
*
* @return reference to the newly created label
*/
- TQLabel *addLabel( TQGridLayout *tqlayout, int x, int y, TQString label,
+ TQLabel *addLabel( TQGridLayout *layout, int x, int y, TQString label,
TQWidget *parent=0, const char *widgetName=0 );
/**