From 1f96a598d14fe461435049a7cd55a2598ca2e367 Mon Sep 17 00:00:00 2001 From: Darrell Anderson Date: Fri, 13 Apr 2012 01:13:20 -0500 Subject: [PATCH] Fix inadvertent "TQ" changes. --- khexedit/hexbuffer.cc | 2 +- kjots/KJotsMain.cpp | 2 +- kjots/KJotsMain.h | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/khexedit/hexbuffer.cc b/khexedit/hexbuffer.cc index e6a5532..1e34ae7 100644 --- a/khexedit/hexbuffer.cc +++ b/khexedit/hexbuffer.cc @@ -4896,7 +4896,7 @@ int CHexBuffer::printHtmlHeader( TQTextStream &os, bool isFront ) if( isFront == true ) { os << "" << endl << "" << endl; - os << "" << endl; os << "" << endl; os << "" << endl << "" << endl; diff --git a/kjots/KJotsMain.cpp b/kjots/KJotsMain.cpp index f2dfa97..9333b81 100644 --- a/kjots/KJotsMain.cpp +++ b/kjots/KJotsMain.cpp @@ -142,7 +142,7 @@ KJotsMain::KJotsMain(const char* name) actions[ACTION_MANUAL_SAVE] = new KAction(i18n("Manual Save"), 0, KStdAccel::save(), TQT_TQOBJECT(this), TQT_SLOT(autoSave()), actionCollection(), "manual_save"); actions[ACTION_PRINT] = KStdAction::print(TQT_TQOBJECT(this), TQT_SLOT(slotPrint()), actionCollection()); - actions[ACTION_TQUIT] = KStdAction::quit(TQT_TQOBJECT(this), TQT_SLOT(slotQuit()), actionCollection()); + actions[ACTION_QUIT] = KStdAction::quit(TQT_TQOBJECT(this), TQT_SLOT(slotQuit()), actionCollection()); actions[ACTION_CUT] = KStdAction::cut(TQT_TQOBJECT(me_text), TQT_SLOT(cut()), actionCollection()); connect(me_text, TQT_SIGNAL(copyAvailable(bool)), actions[ACTION_CUT], TQT_SLOT(setEnabled(bool))); diff --git a/kjots/KJotsMain.h b/kjots/KJotsMain.h index 132e10e..bc36d2d 100644 --- a/kjots/KJotsMain.h +++ b/kjots/KJotsMain.h @@ -67,7 +67,7 @@ class KJotsEdit; #define ACTION_DELETE_BOOK 11 #define ACTION_MANUAL_SAVE 12 #define ACTION_PRINT 13 -#define ACTION_TQUIT 14 +#define ACTION_QUIT 14 #define ACTION_CUT 15 #define ACTION_COPY 16 #define ACTION_PASTE2TITLE 17