diff options
Diffstat (limited to 'kradio3/plugins/gui-quickbar')
-rw-r--r-- | kradio3/plugins/gui-quickbar/buttonflowlayout.cpp | 4 | ||||
-rw-r--r-- | kradio3/plugins/gui-quickbar/buttonflowlayout.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/kradio3/plugins/gui-quickbar/buttonflowlayout.cpp b/kradio3/plugins/gui-quickbar/buttonflowlayout.cpp index 419fd10..23b8e14 100644 --- a/kradio3/plugins/gui-quickbar/buttonflowlayout.cpp +++ b/kradio3/plugins/gui-quickbar/buttonflowlayout.cpp @@ -63,8 +63,8 @@ ButtonFlowLayout::ButtonFlowLayout( TQWidget *tqparent, int margin, int spacing, { } -ButtonFlowLayout::ButtonFlowLayout( TQLayout* tqparentLayout, int spacing, const char *name ) - : TQLayout( tqparentLayout, spacing, name ), +ButtonFlowLayout::ButtonFlowLayout( TQLayout* parentLayout, int spacing, const char *name ) + : TQLayout( parentLayout, spacing, name ), cached_width(0) { } diff --git a/kradio3/plugins/gui-quickbar/buttonflowlayout.h b/kradio3/plugins/gui-quickbar/buttonflowlayout.h index 624688e..16a0b45 100644 --- a/kradio3/plugins/gui-quickbar/buttonflowlayout.h +++ b/kradio3/plugins/gui-quickbar/buttonflowlayout.h @@ -32,7 +32,7 @@ public: ButtonFlowLayout( TQWidget *tqparent, int margin = 0, int spacing=-1, const char *name=0 ); - ButtonFlowLayout( TQLayout* tqparentLayout, int spacing=-1, const char *name=0 ); + ButtonFlowLayout( TQLayout* parentLayout, int spacing=-1, const char *name=0 ); ButtonFlowLayout( int spacing=-1, const char *name=0 ); |