summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarrell Anderson <humanreadable@yahoo.com>2012-04-13 01:13:20 -0500
committerSlávek Banko <slavek.banko@axis.cz>2012-06-04 03:15:21 +0200
commitb70b7de369cfca9bbf649db168c20660c29861fe (patch)
tree8585d56c1a248acb5c2e56f1652c39f7bd98f5d9
parentdc6bced2ff88c72185043e3b63248758494f0cfb (diff)
downloadtdeutils-b70b7de369cfca9bbf649db168c20660c29861fe.tar.gz
tdeutils-b70b7de369cfca9bbf649db168c20660c29861fe.zip
Fix inadvertent "TQ" changes.
(cherry picked from commit 1f96a598d14fe461435049a7cd55a2598ca2e367)
-rw-r--r--khexedit/hexbuffer.cc2
-rw-r--r--kjots/KJotsMain.cpp2
-rw-r--r--kjots/KJotsMain.h2
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 << "<HTML>" << endl << "<HEAD>" << endl;
- os << "<META HTTP-ETQUIV=\"Content-Type\" CONTENT=\"text/html; ";
+ os << "<META HTTP-EQUIV=\"Content-Type\" CONTENT=\"text/html; ";
os << "charset=iso-8859-1\">" << endl;
os << "<META NAME=\"hexdata\" CONTENT=\"khexedit dump\">" << endl;
os << "</HEAD>" << endl << "<BODY>" << 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 61c830b..d52b2b5 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