diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-01-03 04:12:51 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-01-03 04:12:51 +0000 |
commit | 560378aaca1784ba19806a0414a32b20c744de39 (patch) | |
tree | ce0dfd7c3febf2a1adc7603d1019a8be2083c415 /kdecore/kde-config.cpp.cmake | |
parent | d4d5af1cdbd3cc65d095e0afc5b1f4260091cf5d (diff) | |
download | tdelibs-560378aaca1784ba19806a0414a32b20c744de39.tar.gz tdelibs-560378aaca1784ba19806a0414a32b20c744de39.zip |
Automated conversion for enhanced compatibility with TQt for Qt4 3.4.0 TP1
NOTE: This will not compile with Qt4 (yet), however it does compile with Qt3
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1211081 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kdecore/kde-config.cpp.cmake')
-rw-r--r-- | kdecore/kde-config.cpp.cmake | 52 |
1 files changed, 26 insertions, 26 deletions
diff --git a/kdecore/kde-config.cpp.cmake b/kdecore/kde-config.cpp.cmake index f7be1e2be..291329398 100644 --- a/kdecore/kde-config.cpp.cmake +++ b/kdecore/kde-config.cpp.cmake @@ -32,69 +32,69 @@ bool _expandvars = false; TQString expandvars(const char *_input) { - TQString result = TQString::fromLatin1(_input); + TQString result = TQString::tqfromLatin1(_input); if (!_expandvars) return result; bool changed = false; - int index = result.find("${prefix}"); + int index = result.tqfind("${prefix}"); if (index >= 0) { - result = result.replace(index, 9, "@CMAKE_INSTALL_PREFIX@"); + result = result.tqreplace(index, 9, "@CMAKE_INSTALL_PREFIX@"); changed = true; } - index = result.find("$(prefix)"); + index = result.tqfind("$(prefix)"); if (index >= 0) { - result = result.replace(index, 9, "@CMAKE_INSTALL_PREFIX@"); + result = result.tqreplace(index, 9, "@CMAKE_INSTALL_PREFIX@"); changed = true; } - index = result.find("${datadir}"); + index = result.tqfind("${datadir}"); if (index >= 0) { - result = result.replace(index, 10, "@SHARE_INSTALL_PREFIX@"); + result = result.tqreplace(index, 10, "@SHARE_INSTALL_PREFIX@"); changed = true; } - index = result.find("$(datadir)"); + index = result.tqfind("$(datadir)"); if (index >= 0) { - result = result.replace(index, 10, "@SHARE_INSTALL_PREFIX@"); + result = result.tqreplace(index, 10, "@SHARE_INSTALL_PREFIX@"); changed = true; } - index = result.find("${exec_prefix}"); + index = result.tqfind("${exec_prefix}"); if (index >= 0) { - result = result.replace(index, 14, "@EXEC_INSTALL_PREFIX@"); + result = result.tqreplace(index, 14, "@EXEC_INSTALL_PREFIX@"); changed = true; } - index = result.find("$(exec_prefix)"); + index = result.tqfind("$(exec_prefix)"); if (index >= 0) { - result = result.replace(index, 14, "@EXEC_INSTALL_PREFIX@"); + result = result.tqreplace(index, 14, "@EXEC_INSTALL_PREFIX@"); changed = true; } - index = result.find("${libdir}"); + index = result.tqfind("${libdir}"); if (index >= 0) { - result = result.replace(index, 9, "@LIB_INSTALL_DIR@"); + result = result.tqreplace(index, 9, "@LIB_INSTALL_DIR@"); changed = true; } - index = result.find("$(libdir)"); + index = result.tqfind("$(libdir)"); if (index >= 0) { - result = result.replace(index, 9, "@LIB_INSTALL_DIR@"); + result = result.tqreplace(index, 9, "@LIB_INSTALL_DIR@"); changed = true; } - index = result.find("${includedir}"); + index = result.tqfind("${includedir}"); if (index >= 0) { - result = result.replace(index, 20, "@INCLUDE_INSTALL_DIR@"); + result = result.tqreplace(index, 20, "@INCLUDE_INSTALL_DIR@"); changed = true; } - index = result.find("$(includedir)"); + index = result.tqfind("$(includedir)"); if (index >= 0) { - result = result.replace(index, 20, "@INCLUDE_INSTALL_DIR@"); + result = result.tqreplace(index, 20, "@INCLUDE_INSTALL_DIR@"); changed = true; } - index = result.find("${sysconfdir}"); + index = result.tqfind("${sysconfdir}"); if (index >= 0) { - result = result.replace(index, 13, "@SYSCONF_INSTALL_DIR@"); + result = result.tqreplace(index, 13, "@SYSCONF_INSTALL_DIR@"); changed = true; } - index = result.find("$(sysconfdir)"); + index = result.tqfind("$(sysconfdir)"); if (index >= 0) { - result = result.replace(index, 13, "@SYSCONF_INSTALL_DIR@"); + result = result.tqreplace(index, 13, "@SYSCONF_INSTALL_DIR@"); changed = true; } if (changed) @@ -186,7 +186,7 @@ int main(int argc, char **argv) "wallpaper", I18N_NOOP("Wallpapers"), "xdgdata-apps", I18N_NOOP("XDG Application menu (.desktop files)"), "xdgdata-dirs", I18N_NOOP("XDG Menu descriptions (.directory files)"), - "xdgconf-menu", I18N_NOOP("XDG Menu layout (.menu files)"), + "xdgconf-menu", I18N_NOOP("XDG Menu tqlayout (.menu files)"), "cmake", I18N_NOOP("CMake import modules (.cmake files)"), "tmp", I18N_NOOP("Temporary files (specific for both current host and current user)"), "socket", I18N_NOOP("UNIX Sockets (specific for both current host and current user)"), |