diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-03-13 10:33:25 +0900 | 
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-03-14 09:19:43 +0900 | 
| commit | 031143c754a9709533c99d796ba563ad59c9178f (patch) | |
| tree | 01aabb601a5902298210106a348480d741f97624 /conduits/sysinfoconduit/sysinfo-conduit.cpp | |
| parent | 84beaa20de582a75109b15be113769738656979d (diff) | |
| download | kpilot-031143c7.tar.gz kpilot-031143c7.zip | |
Replace Qt with TQt
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 0a2a45331d762f6e555e2d14c093f35822f868ec)
Diffstat (limited to 'conduits/sysinfoconduit/sysinfo-conduit.cpp')
| -rw-r--r-- | conduits/sysinfoconduit/sysinfo-conduit.cpp | 16 | 
1 files changed, 8 insertions, 8 deletions
| diff --git a/conduits/sysinfoconduit/sysinfo-conduit.cpp b/conduits/sysinfoconduit/sysinfo-conduit.cpp index 71e1310..4ec46be 100644 --- a/conduits/sysinfoconduit/sysinfo-conduit.cpp +++ b/conduits/sysinfoconduit/sysinfo-conduit.cpp @@ -107,8 +107,8 @@ const TQString SysInfoConduit::defaultpage = CSL1("KPilot System Information Pag  "-) Version Information (Desktop)\n"  "     Operating System:   #os#\n"  "     Hostname:           #hostname#\n" -"     TQt Version:         #qt#\n" -"     KDE Version:        #kde#\n" +"     TQt Version:        #tqt#\n" +"     TDE Version:        #tde#\n"  "     KPilot Version:     #kpilot#\n"  "     Pilot-Link Version: #pilotlink#\n"  "#endifpcversion#-->\n" @@ -395,14 +395,14 @@ void SysInfoConduit::pcVersionInfo()  	if (fKDEVersion) {  		/* Retrieve values for  		 * - #os# -		 * - #qt# -		 * - #kde# +		 * - #tqt# +		 * - #tde#  		 * - #kpilot#  		 * - #pilotlink#  		 */  		fValues[CSL1("kpilot")] = TQString::fromLatin1(KPILOT_VERSION); -		fValues[CSL1("kde")] = i18n("unknown"); -		fValues[CSL1("qt")] = i18n("unknown"); +		fValues[CSL1("tde")] = i18n("unknown"); +		fValues[CSL1("tqt")] = i18n("unknown");  		fValues[CSL1("os")] = i18n("unknown");  		fValues[CSL1("hostname")] = i18n("unknown");  		struct utsname name; @@ -414,10 +414,10 @@ void SysInfoConduit::pcVersionInfo()  			fValues[CSL1("hostname")] = CSL1("%2").arg(TQString::fromLatin1(name.nodename));  		}  #ifdef TDE_VERSION_STRING -		fValues[CSL1("kde")] = TQString::fromLatin1(TDE_VERSION_STRING); +		fValues[CSL1("tde")] = TQString::fromLatin1(TDE_VERSION_STRING);  #endif  #ifdef TQT_VERSION_STR -		fValues[CSL1("qt")] = TQString::fromLatin1(TQT_VERSION_STR); +		fValues[CSL1("tqt")] = TQString::fromLatin1(TQT_VERSION_STR);  #endif  		fValues[CSL1("pilotlink")] = CSL1("%1.%2.%3%4")  			.arg(PILOT_LINK_VERSION) | 
