summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-08-25 19:10:56 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-08-25 19:10:56 +0900
commit075471f041516c31c7ea976dae03b5a771d6910d (patch)
tree07535c03bc3ac27df6da867f8e8822ab7b8f7ede
parent59999a5ad2e7a43bba88d4d25ef970c2fbc575f0 (diff)
downloaduniversal-indent-gui-tqt-075471f041516c31c7ea976dae03b5a771d6910d.tar.gz
universal-indent-gui-tqt-075471f041516c31c7ea976dae03b5a771d6910d.zip
Don't use ntq* headers and adapt to __TDE_HAVE_GCC_VISIBILITY
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-rw-r--r--config.h.cmake2
-rwxr-xr-xreadme.html14
-rw-r--r--src/UiGuiErrorMessage.cpp2
-rw-r--r--src/__TODO/AboutDialogGraphicsView.cpp4
-rw-r--r--src/__TODO/UiGuiIndentServer.cpp2
-rw-r--r--src/debugging/TSLogger.cpp12
-rw-r--r--src/debugging/TSLogger.h4
7 files changed, 20 insertions, 20 deletions
diff --git a/config.h.cmake b/config.h.cmake
index bf4bed3..99cc77b 100644
--- a/config.h.cmake
+++ b/config.h.cmake
@@ -8,7 +8,7 @@
#define APP_ICONS_PATH "@SHARE_INSTALL_PREFIX@/universal-indent-gui-tqt/icons/"
// Defined if you have fvisibility and fvisibility-inlines-hidden support.
-#cmakedefine __KDE_HAVE_GCC_VISIBILITY 1
+#cmakedefine __TDE_HAVE_GCC_VISIBILITY 1
/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
significant byte first (like Motorola and SPARC, unlike Intel). */
diff --git a/readme.html b/readme.html
index 4e259b4..bc6dde5 100755
--- a/readme.html
+++ b/readme.html
@@ -196,11 +196,11 @@ a.external
<p>This list shows some selected functionalities that TQt offers and that I use with UiGUI.</p>
<ul>
<li>Translations are done with
- <a class="external" href="http://doc.trolltech.com/4.4/ntqtranslator.html">TQTranslator</a>,
- <a class="external" href="http://doc.trolltech.com/4.4/ntqlocale.html">TQLocale</a> and Linguist.</li>
+ <a class="external" href="http://doc.trolltech.com/4.4/tqtranslator.html">TQTranslator</a>,
+ <a class="external" href="http://doc.trolltech.com/4.4/tqlocale.html">TQLocale</a> and Linguist.</li>
<li>File encodings are supported by using
- <a class="external" href="http://doc.trolltech.com/4.4/ntqtextcodec.html">TQTextCodec</a>
- and <a class="external" href="http://doc.trolltech.com/4.4/ntqtextstream.html">TQTextStream</a>.</li>
+ <a class="external" href="http://doc.trolltech.com/4.4/tqtextcodec.html">TQTextCodec</a>
+ and <a class="external" href="http://doc.trolltech.com/4.4/tqtextstream.html">TQTextStream</a>.</li>
<li><a class="external" href="http://doc.trolltech.com/4.4/qscriptengine.html">TQScriptEngine</a>
and <a class="external" href="http://doc.trolltech.com/4.4/qscriptvalue.html">TQScriptValue</a>
is included for executing JavaScript files used as indenters.</li>
@@ -209,10 +209,10 @@ a.external
for creating an animated 3D about dialog, simulating that is done on the whole desktop by using
the screenshot capability of TQt.</li>
<li>Stylesheet settings give the about dialog a special look. Also gradients are used.</li>
- <li><a class="external" href="http://doc.trolltech.com/4.4/ntqhttp.html">TQHttp</a>
- and <a class="external" href="http://doc.trolltech.com/4.4/ntqurl.html">TQUrl</a>
+ <li><a class="external" href="http://doc.trolltech.com/4.4/tqhttp.html">TQHttp</a>
+ and <a class="external" href="http://doc.trolltech.com/4.4/tqurl.html">TQUrl</a>
are used for the update check.</li>
- <li><a class="external" href="http://doc.trolltech.com/4.4/ntqsettings.html">TQSettings</a>
+ <li><a class="external" href="http://doc.trolltech.com/4.4/tqsettings.html">TQSettings</a>
is responsible for storing the application and syntax highlighter settings.</li>
<li><a class="external" href="http://doc.trolltech.com/4.4/qtcpserver.html">TQTcpServer</a>
and <a class="external" href="http://doc.trolltech.com/4.4/qtcpsocket.html">TQTcpSocket</a>
diff --git a/src/UiGuiErrorMessage.cpp b/src/UiGuiErrorMessage.cpp
index 144a673..f133e47 100644
--- a/src/UiGuiErrorMessage.cpp
+++ b/src/UiGuiErrorMessage.cpp
@@ -19,7 +19,7 @@
#include "UiGuiErrorMessage.h"
-#include <ntqobjectdefs.h>
+#include <tqobjectdefs.h>
#include <tqcheckbox.h>
/*
diff --git a/src/__TODO/AboutDialogGraphicsView.cpp b/src/__TODO/AboutDialogGraphicsView.cpp
index 1a6a7ea..da224d2 100644
--- a/src/__TODO/AboutDialogGraphicsView.cpp
+++ b/src/__TODO/AboutDialogGraphicsView.cpp
@@ -22,10 +22,10 @@
#include "AboutDialog.h"
#include <tqtgui.h>
-#include <tntqdesktopwidget.h>
+#include <tqdesktopwidget.h>
#include <tqdate.h>
#include <tqtimeline.h>
-#include <tntqsplashscreen.h>
+#include <tqsplashscreen.h>
/*
\class AboutDialogGraphicsView
diff --git a/src/__TODO/UiGuiIndentServer.cpp b/src/__TODO/UiGuiIndentServer.cpp
index 76b18d6..5a39951 100644
--- a/src/__TODO/UiGuiIndentServer.cpp
+++ b/src/__TODO/UiGuiIndentServer.cpp
@@ -21,7 +21,7 @@
#include <tqtcpserver.h>
#include <tqtcpsocket.h>
-#include <tntqmessagebox.h>
+#include <tqmessagebox.h>
#include <tqtdebug.h>
// \defgroup grp_Server All concerning the server component.
diff --git a/src/debugging/TSLogger.cpp b/src/debugging/TSLogger.cpp
index caa29ad..a64ccfb 100644
--- a/src/debugging/TSLogger.cpp
+++ b/src/debugging/TSLogger.cpp
@@ -22,13 +22,13 @@
#include "SettingsPaths.h"
-#include <tntqdatetime.h>
-#include <tntqfile.h>
-#include <tntqfileinfo.h>
-#include <tntqurl.h>
-#include <tntqtextstream.h>
+#include <tqdatetime.h>
+#include <tqfile.h>
+#include <tqfileinfo.h>
+#include <tqurl.h>
+#include <tqtextstream.h>
#include <tqdesktopservices.h>
-#include <tntqmessagebox.h>
+#include <tqmessagebox.h>
#include <ctime>
diff --git a/src/debugging/TSLogger.h b/src/debugging/TSLogger.h
index 8510ecb..0e20214 100644
--- a/src/debugging/TSLogger.h
+++ b/src/debugging/TSLogger.h
@@ -20,8 +20,8 @@
#ifndef TSLogger_H
#define TSLogger_H
-#include <tntqdialog.h>
-#include <tntqfile.h>
+#include <tqdialog.h>
+#include <tqfile.h>
namespace Ui
{