diff options
Diffstat (limited to 'drkonqi/drbugreport.cpp')
-rw-r--r-- | drkonqi/drbugreport.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drkonqi/drbugreport.cpp b/drkonqi/drbugreport.cpp index 48ef71a3f..3ec731b01 100644 --- a/drkonqi/drbugreport.cpp +++ b/drkonqi/drbugreport.cpp @@ -26,7 +26,7 @@ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. *****************************************************************/ -#include <qmultilineedit.h> +#include <tqmultilineedit.h> #include <kmessagebox.h> #include <klocale.h> @@ -34,13 +34,13 @@ #include "drbugreport.moc" #include "drbugreport.h" -DrKBugReport::DrKBugReport(QWidget *parent, bool modal, +DrKBugReport::DrKBugReport(TQWidget *parent, bool modal, const KAboutData *aboutData) : KBugReport(parent, modal, aboutData) { } -void DrKBugReport::setText(const QString &str) +void DrKBugReport::setText(const TQString &str) { m_lineedit->setText(str); m_startstring = str.simplifyWhiteSpace(); @@ -51,7 +51,7 @@ void DrKBugReport::slotOk() if (!m_startstring.isEmpty() && m_lineedit->text().simplifyWhiteSpace() == m_startstring) { - QString msg = i18n("You have to edit the description " + TQString msg = i18n("You have to edit the description " "before the report can be sent."); KMessageBox::error(this, msg); return; |