summaryrefslogtreecommitdiffstats
path: root/kradio3/plugins/gui-quickbar
diff options
context:
space:
mode:
Diffstat (limited to 'kradio3/plugins/gui-quickbar')
-rw-r--r--kradio3/plugins/gui-quickbar/buttonflowlayout.cpp4
-rw-r--r--kradio3/plugins/gui-quickbar/buttonflowlayout.h2
-rw-r--r--kradio3/plugins/gui-quickbar/quickbar-configuration.cpp4
-rw-r--r--kradio3/plugins/gui-quickbar/quickbar-configuration.h2
4 files changed, 6 insertions, 6 deletions
diff --git a/kradio3/plugins/gui-quickbar/buttonflowlayout.cpp b/kradio3/plugins/gui-quickbar/buttonflowlayout.cpp
index 23b8e14..499ec8d 100644
--- a/kradio3/plugins/gui-quickbar/buttonflowlayout.cpp
+++ b/kradio3/plugins/gui-quickbar/buttonflowlayout.cpp
@@ -56,9 +56,9 @@ TQLayoutItem *ButtonFlowLayoutIterator::takeCurrent()
/**************************************************************/
-ButtonFlowLayout::ButtonFlowLayout( TQWidget *tqparent, int margin, int spacing,
+ButtonFlowLayout::ButtonFlowLayout( TQWidget *parent, int margin, int spacing,
const char *name )
- : TQLayout( tqparent, margin, spacing, name ),
+ : TQLayout( parent, margin, spacing, name ),
cached_width(0)
{
}
diff --git a/kradio3/plugins/gui-quickbar/buttonflowlayout.h b/kradio3/plugins/gui-quickbar/buttonflowlayout.h
index 16a0b45..885f6f7 100644
--- a/kradio3/plugins/gui-quickbar/buttonflowlayout.h
+++ b/kradio3/plugins/gui-quickbar/buttonflowlayout.h
@@ -29,7 +29,7 @@
class ButtonFlowLayout : public TQLayout
{
public:
- ButtonFlowLayout( TQWidget *tqparent, int margin = 0, int spacing=-1,
+ ButtonFlowLayout( TQWidget *parent, int margin = 0, int spacing=-1,
const char *name=0 );
ButtonFlowLayout( TQLayout* parentLayout, int spacing=-1, const char *name=0 );
diff --git a/kradio3/plugins/gui-quickbar/quickbar-configuration.cpp b/kradio3/plugins/gui-quickbar/quickbar-configuration.cpp
index e9c784e..7fcedb1 100644
--- a/kradio3/plugins/gui-quickbar/quickbar-configuration.cpp
+++ b/kradio3/plugins/gui-quickbar/quickbar-configuration.cpp
@@ -19,8 +19,8 @@
using namespace std;
-QuickbarConfiguration::QuickbarConfiguration (TQWidget *tqparent)
- : StationSelector(tqparent)
+QuickbarConfiguration::QuickbarConfiguration (TQWidget *parent)
+ : StationSelector(parent)
{
}
diff --git a/kradio3/plugins/gui-quickbar/quickbar-configuration.h b/kradio3/plugins/gui-quickbar/quickbar-configuration.h
index c2ba4f8..3ff0213 100644
--- a/kradio3/plugins/gui-quickbar/quickbar-configuration.h
+++ b/kradio3/plugins/gui-quickbar/quickbar-configuration.h
@@ -29,7 +29,7 @@ class QuickbarConfiguration : public StationSelector
Q_OBJECT
TQ_OBJECT
public :
- QuickbarConfiguration (TQWidget *tqparent);
+ QuickbarConfiguration (TQWidget *parent);
~QuickbarConfiguration ();
};