diff options
Diffstat (limited to 'src/common/gui/purl_gui.cpp')
-rw-r--r-- | src/common/gui/purl_gui.cpp | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/common/gui/purl_gui.cpp b/src/common/gui/purl_gui.cpp index f93e11c..0284682 100644 --- a/src/common/gui/purl_gui.cpp +++ b/src/common/gui/purl_gui.cpp @@ -74,8 +74,8 @@ bool PURL::hasMimetype(FileType type) //----------------------------------------------------------------------------- PURL::Label::Label(const TQString &url, const TQString &text, - TQWidget *tqparent, const char *name) - : KURLLabel(url, text, tqparent, name) + TQWidget *parent, const char *name) + : KURLLabel(url, text, parent, name) { connect(this, TQT_SIGNAL(leftClickedURL()), TQT_SLOT(urlClickedSlot())); } @@ -86,14 +86,14 @@ void PURL::Label::urlClickedSlot() } //----------------------------------------------------------------------------- -PURL::BaseWidget::BaseWidget(TQWidget *tqparent, const char *name) - : TQWidget(tqparent, name) +PURL::BaseWidget::BaseWidget(TQWidget *parent, const char *name) + : TQWidget(parent, name) { init(); } -PURL::BaseWidget::BaseWidget(const TQString &defaultDir, TQWidget *tqparent, const char *name) - : TQWidget(tqparent, name), _defaultDir(defaultDir) +PURL::BaseWidget::BaseWidget(const TQString &defaultDir, TQWidget *parent, const char *name) + : TQWidget(parent, name), _defaultDir(defaultDir) { init(); } @@ -122,14 +122,14 @@ void PURL::DirectoryWidget::buttonClicked() } //---------------------------------------------------------------------------- -PURL::DirectoriesWidget::DirectoriesWidget(const TQString &title, TQWidget *tqparent, const char *name) - : TQVGroupBox(title, tqparent, name) +PURL::DirectoriesWidget::DirectoriesWidget(const TQString &title, TQWidget *parent, const char *name) + : TQVGroupBox(title, parent, name) { init(TQString()); } -PURL::DirectoriesWidget::DirectoriesWidget(const TQString &title, const TQString &defaultDir, TQWidget *tqparent, const char *name) - : TQVGroupBox(title, tqparent, name) +PURL::DirectoriesWidget::DirectoriesWidget(const TQString &title, const TQString &defaultDir, TQWidget *parent, const char *name) + : TQVGroupBox(title, parent, name) { init(defaultDir); } |