summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarrell Anderson <humanreadable@yahoo.com>2012-04-13 01:13:20 -0500
committerDarrell Anderson <humanreadable@yahoo.com>2012-04-13 01:13:20 -0500
commit1f96a598d14fe461435049a7cd55a2598ca2e367 (patch)
tree91add6946e119e30174a82fc8be24f72add86813
parente15496914bcc204e368b6c543dda073b544d1a55 (diff)
downloadtdeutils-1f96a598d14fe461435049a7cd55a2598ca2e367.tar.gz
tdeutils-1f96a598d14fe461435049a7cd55a2598ca2e367.zip
Fix inadvertent "TQ" changes.
-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 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