diff options
author | Michele Calgaro <[email protected]> | 2024-03-13 10:33:25 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-03-13 10:47:32 +0900 |
commit | 0a2a45331d762f6e555e2d14c093f35822f868ec (patch) | |
tree | cbd284f9ce5bbba6e6e460c707cbec2bc3544396 /conduits/sysinfoconduit/sysinfo-conduit.cpp | |
parent | 9a5d96d5bcf4ea5e36ffb75972acc340648d3496 (diff) | |
download | kpilot-0a2a45331d762f6e555e2d14c093f35822f868ec.tar.gz kpilot-0a2a45331d762f6e555e2d14c093f35822f868ec.zip |
cmake files: change keywords to lower case
Signed-off-by: Michele Calgaro <[email protected]>
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) |