summaryrefslogtreecommitdiffstats
path: root/kbugbuster
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-08-02 19:27:52 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-08-02 19:27:52 +0000
commit6082256ac592910b0fb2229a095eaa4d85254df2 (patch)
treea30fe22105b4413c310683d4fb21caff5f8caf6c /kbugbuster
parent4ae0c208b66e0f7954e194384464fe2d0a2c56dd (diff)
downloadtdesdk-6082256ac592910b0fb2229a095eaa4d85254df2.tar.gz
tdesdk-6082256ac592910b0fb2229a095eaa4d85254df2.zip
TQt conversion fixes
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdesdk@1158450 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kbugbuster')
-rw-r--r--kbugbuster/backend/kbbprefs.h2
-rw-r--r--kbugbuster/backend/smtp.h4
-rw-r--r--kbugbuster/gui/centralwidget.h4
-rw-r--r--kbugbuster/gui/cwloadingwidget.cpp2
-rw-r--r--kbugbuster/gui/cwloadingwidget.h2
-rw-r--r--kbugbuster/gui/kbbmainwindow.h6
-rw-r--r--kbugbuster/gui/messageeditor.cpp2
-rw-r--r--kbugbuster/gui/messageeditor.h2
-rw-r--r--kbugbuster/gui/msginputdialog.h2
-rw-r--r--kbugbuster/gui/preferencesdialog.h8
-rw-r--r--kbugbuster/gui/serverconfigdialog.h4
11 files changed, 19 insertions, 19 deletions
diff --git a/kbugbuster/backend/kbbprefs.h b/kbugbuster/backend/kbbprefs.h
index 3c883e7e..da70c959 100644
--- a/kbugbuster/backend/kbbprefs.h
+++ b/kbugbuster/backend/kbbprefs.h
@@ -30,7 +30,7 @@
#include "mailsender.h"
-class QStringList;
+class TQStringList;
class KBBPrefs : public KConfigSkeleton
{
diff --git a/kbugbuster/backend/smtp.h b/kbugbuster/backend/smtp.h
index b97e3b89..f94e7660 100644
--- a/kbugbuster/backend/smtp.h
+++ b/kbugbuster/backend/smtp.h
@@ -14,8 +14,8 @@
#include <tqstring.h>
#include <tqstringlist.h>
-class QSocket;
-class QTextStream;
+class TQSocket;
+class TQTextStream;
class Smtp : public QObject
{
diff --git a/kbugbuster/gui/centralwidget.h b/kbugbuster/gui/centralwidget.h
index 30b40f61..a11d6d5f 100644
--- a/kbugbuster/gui/centralwidget.h
+++ b/kbugbuster/gui/centralwidget.h
@@ -23,8 +23,8 @@
#include "bug.h"
#include "bugdetails.h"
-class QSplitter;
-class QListViewItem;
+class TQSplitter;
+class TQListViewItem;
namespace KBugBusterMainWindow
{
diff --git a/kbugbuster/gui/cwloadingwidget.cpp b/kbugbuster/gui/cwloadingwidget.cpp
index 0c51241d..24eb70b9 100644
--- a/kbugbuster/gui/cwloadingwidget.cpp
+++ b/kbugbuster/gui/cwloadingwidget.cpp
@@ -95,7 +95,7 @@ void CWLoadingWidget::init( WidgetMode mode )
}
// Create and fill the buffer
- m_buffer = new QPixmap;
+ m_buffer = new TQPixmap;
}
void CWLoadingWidget::resizeEvent( TQResizeEvent * )
diff --git a/kbugbuster/gui/cwloadingwidget.h b/kbugbuster/gui/cwloadingwidget.h
index 9aa3b0b5..1150f39e 100644
--- a/kbugbuster/gui/cwloadingwidget.h
+++ b/kbugbuster/gui/cwloadingwidget.h
@@ -21,7 +21,7 @@
#include <tqlabel.h>
#include <tqframe.h>
-class QPixmap;
+class TQPixmap;
class KPixmap;
namespace KBugBusterMainWindow
diff --git a/kbugbuster/gui/kbbmainwindow.h b/kbugbuster/gui/kbbmainwindow.h
index b16479cf..2e86c596 100644
--- a/kbugbuster/gui/kbbmainwindow.h
+++ b/kbugbuster/gui/kbbmainwindow.h
@@ -30,9 +30,9 @@ class KActionMenu;
class KBookmarkMenu;
class KToggleAction;
class KSelectAction;
-class QLabel;
-class QListViewItem;
-class QProgressBar;
+class TQLabel;
+class TQListViewItem;
+class TQProgressBar;
class PreferencesDialog;
class TextViewer;
class PackageSelectDialog;
diff --git a/kbugbuster/gui/messageeditor.cpp b/kbugbuster/gui/messageeditor.cpp
index f10e0fb4..865ec3da 100644
--- a/kbugbuster/gui/messageeditor.cpp
+++ b/kbugbuster/gui/messageeditor.cpp
@@ -21,7 +21,7 @@ MessageEditor::MessageEditor( TQWidget *parent )
TQFrame *topFrame = plainPage();
TQBoxLayout *topLayout = new TQVBoxLayout(topFrame,0,spacingHint());
- TQBoxLayout *selectionLayout = new QHBoxLayout;
+ TQBoxLayout *selectionLayout = new TQHBoxLayout;
topLayout->addLayout(selectionLayout);
TQLabel *selectionLabel = new TQLabel(i18n("Button:"),topFrame);
diff --git a/kbugbuster/gui/messageeditor.h b/kbugbuster/gui/messageeditor.h
index 57855edf..306cc3d0 100644
--- a/kbugbuster/gui/messageeditor.h
+++ b/kbugbuster/gui/messageeditor.h
@@ -3,7 +3,7 @@
#include <kdialogbase.h>
-class QComboBox;
+class TQComboBox;
class KTextEdit;
class MessageEditor : public KDialogBase {
diff --git a/kbugbuster/gui/msginputdialog.h b/kbugbuster/gui/msginputdialog.h
index 809ff0d2..0ba59008 100644
--- a/kbugbuster/gui/msginputdialog.h
+++ b/kbugbuster/gui/msginputdialog.h
@@ -7,7 +7,7 @@
#include "package.h"
class KTextEdit;
-class QSplitter;
+class TQSplitter;
class KListBox;
class MsgInputDialog : public KDialogBase
diff --git a/kbugbuster/gui/preferencesdialog.h b/kbugbuster/gui/preferencesdialog.h
index 9dd0dc05..89dd7512 100644
--- a/kbugbuster/gui/preferencesdialog.h
+++ b/kbugbuster/gui/preferencesdialog.h
@@ -3,10 +3,10 @@
#include <kdialogbase.h>
-class QCheckBox;
-class QRadioButton;
-class QLineEdit;
-class QListView;
+class TQCheckBox;
+class TQRadioButton;
+class TQLineEdit;
+class TQListView;
class KIntNumInput;
class ServerListView;
diff --git a/kbugbuster/gui/serverconfigdialog.h b/kbugbuster/gui/serverconfigdialog.h
index 33d4573b..f4b3c2ba 100644
--- a/kbugbuster/gui/serverconfigdialog.h
+++ b/kbugbuster/gui/serverconfigdialog.h
@@ -4,9 +4,9 @@
#include <kdialogbase.h>
class BugServerConfig;
-class QLineEdit;
+class TQLineEdit;
class KPasswordEdit;
-class QComboBox;
+class TQComboBox;
class ServerConfigDialog : public KDialogBase
{