diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-03-01 13:24:36 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-03-01 13:24:36 -0600 |
commit | 4b1175e198c1b9f87c1a815a9b4b961f131358c7 (patch) | |
tree | 590308bcec57e41407b0042d7171f4cd33d47f29 | |
parent | 3997cae1995ebcd9ef771882dfec196de21810d9 (diff) | |
download | tqscintilla-4b1175e198c1b9f87c1a815a9b4b961f131358c7.tar.gz tqscintilla-4b1175e198c1b9f87c1a815a9b4b961f131358c7.zip |
Rename additional global TQt functions
-rw-r--r-- | qt/PlatQt.cpp | 4 | ||||
-rw-r--r-- | qt/ScintillaQt.cpp | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/qt/PlatQt.cpp b/qt/PlatQt.cpp index 3b563c6..5f09bc9 100644 --- a/qt/PlatQt.cpp +++ b/qt/PlatQt.cpp @@ -836,7 +836,7 @@ bool Platform::MouseButtonBounce() void Platform::DebugDisplay(const char *s) { - qDebug("%s",s); + tqDebug("%s",s); } bool Platform::IsKeyDown(int) @@ -929,5 +929,5 @@ bool Platform::ShowAssertionPopUps(bool assertionPopUps_) void Platform::Assert(const char *c,const char *file,int line) { - qFatal("Assertion [%s] failed at %s %d\n",c,file,line); + tqFatal("Assertion [%s] failed at %s %d\n",c,file,line); } diff --git a/qt/ScintillaQt.cpp b/qt/ScintillaQt.cpp index e4c0559..d68ee2b 100644 --- a/qt/ScintillaQt.cpp +++ b/qt/ScintillaQt.cpp @@ -401,7 +401,7 @@ void ScintillaTQt::NotifyParent(SCNotification scn) break; default: - qWarning("Unknown notification: %u",scn.nmhdr.code); + tqWarning("Unknown notification: %u",scn.nmhdr.code); } } |