summaryrefslogtreecommitdiffstats
path: root/kbugbuster/gui/preferencesdialog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kbugbuster/gui/preferencesdialog.cpp')
-rw-r--r--kbugbuster/gui/preferencesdialog.cpp26
1 files changed, 13 insertions, 13 deletions
diff --git a/kbugbuster/gui/preferencesdialog.cpp b/kbugbuster/gui/preferencesdialog.cpp
index 2b6f09ab..2c1a845c 100644
--- a/kbugbuster/gui/preferencesdialog.cpp
+++ b/kbugbuster/gui/preferencesdialog.cpp
@@ -51,7 +51,7 @@ class ServerItem : public TQListViewItem
class ServerListView : public TQListView
{
public:
- ServerListView( TQWidget *tqparent ) : TQListView( tqparent )
+ ServerListView( TQWidget *parent ) : TQListView( parent )
{
addColumn( i18n("Name") );
addColumn( i18n("Base URL") );
@@ -60,9 +60,9 @@ class ServerListView : public TQListView
}
};
-PreferencesDialog::PreferencesDialog( TQWidget* tqparent, const char* name )
+PreferencesDialog::PreferencesDialog( TQWidget* parent, const char* name )
: KDialogBase ( IconList, i18n("Preferences"), Ok|Apply|Cancel, Ok,
- tqparent, name, false, true )
+ parent, name, false, true )
{
setupServerPage();
setupAdvancedPage();
@@ -274,21 +274,21 @@ void PreferencesDialog::writeConfig()
emit configChanged();
}
-SelectServerDlg::SelectServerDlg(PreferencesDialog *tqparent, const char */*name*/ )
- :KDialogBase(tqparent, 0, true, i18n("Select Server"),
+SelectServerDlg::SelectServerDlg(PreferencesDialog *parent, const char */*name*/ )
+ :KDialogBase(parent, 0, true, i18n("Select Server"),
KDialogBase::Ok | KDialogBase::Cancel)
{
list = new ServerListView(this );
setMainWidget( list );
- tqparent->createServerItem( list, "KDE", "http://bugs.kde.org", "KDE" );
- tqparent->createServerItem( list, "GNOME", "http://bugzilla.gnome.org", "2.10" );
- tqparent->createServerItem( list, "Mozilla", "http://bugzilla.mozilla.org", "2.17.1" );
- tqparent->createServerItem( list, "Apache", "http://nagoya.apache.org/bugzilla/", "2.14.2" );
- tqparent->createServerItem( list, "XFree86", "http://bugs.xfree86.org/cgi-bin/bugzilla/", "2.14.2" );
- tqparent->createServerItem( list, "Ximian", "http://bugzilla.ximian.com", "2.10" );
- tqparent->createServerItem( list, "RedHat", "http://bugzilla.redhat.com/bugzilla/", "2.17.1" );
- tqparent->createServerItem( list, "Mandriva", "http://qa.mandriva.com/", "2.17.4" );
+ parent->createServerItem( list, "KDE", "http://bugs.kde.org", "KDE" );
+ parent->createServerItem( list, "GNOME", "http://bugzilla.gnome.org", "2.10" );
+ parent->createServerItem( list, "Mozilla", "http://bugzilla.mozilla.org", "2.17.1" );
+ parent->createServerItem( list, "Apache", "http://nagoya.apache.org/bugzilla/", "2.14.2" );
+ parent->createServerItem( list, "XFree86", "http://bugs.xfree86.org/cgi-bin/bugzilla/", "2.14.2" );
+ parent->createServerItem( list, "Ximian", "http://bugzilla.ximian.com", "2.10" );
+ parent->createServerItem( list, "RedHat", "http://bugzilla.redhat.com/bugzilla/", "2.17.1" );
+ parent->createServerItem( list, "Mandriva", "http://qa.mandriva.com/", "2.17.4" );
connect( list, TQT_SIGNAL( doubleClicked ( TQListViewItem *)), this, TQT_SLOT( slotDoubleClicked( TQListViewItem *)));
}