summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 06:08:18 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 06:08:18 +0000
commitd64f4816a5047d26f5250b28c0e01d43bcec9e90 (patch)
treecbd22927146238a6b85d6427828a03c7d35e2e51
parent21de1dcebcd6136c84f04dcffc632af4be07e07d (diff)
downloadgtk-qt-engine-d64f4816.tar.gz
gtk-qt-engine-d64f4816.zip
rename the following methods:
tqfind find tqreplace replace tqcontains contains git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/gtk-qt-engine@1246075 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
-rw-r--r--kcm_gtk/kcmgtk.cpp8
-rw-r--r--src/qt_qt_wrapper.cpp18
2 files changed, 13 insertions, 13 deletions
diff --git a/kcm_gtk/kcmgtk.cpp b/kcm_gtk/kcmgtk.cpp
index 3b6b36e..11f1405 100644
--- a/kcm_gtk/kcmgtk.cpp
+++ b/kcm_gtk/kcmgtk.cpp
@@ -131,7 +131,7 @@ TQFont GtkRcParser::parseFont(TQString fontString)
TQFont ret;
while (true)
{
- int lastSpacePos = fontString.tqfindRev(' ');
+ int lastSpacePos = fontString.findRev(' ');
if (lastSpacePos == -1)
break;
@@ -215,7 +215,7 @@ void KcmGtk::getInstalledThemes()
{
if ((*it2).startsWith("."))
continue;
- if (themes.tqfind(*it2) != themes.end())
+ if (themes.find(*it2) != themes.end())
continue;
if (!TQFile::exists(path + (*it2) + "/gtk-2.0/gtkrc"))
continue;
@@ -226,7 +226,7 @@ void KcmGtk::getInstalledThemes()
widget->styleBox->clear();
widget->styleBox->insertStringList(themes.keys());
- bool installed = (themes.tqfind("Qt") != themes.end());
+ bool installed = (themes.find("Qt") != themes.end());
widget->styleKde->setEnabled(installed);
widget->warning1->setHidden(installed);
widget->warning2->setHidden(installed);
@@ -431,7 +431,7 @@ void KcmGtk::save()
TQString rcLine = "export GTK2_RC_FILES=$HOME/.gtkrc-2.0";
TQString fileDataString(fileData);
- fileDataString.tqreplace("\n" + rcLine, "\n# (This is no longer needed from version 0.8 of the theme engine)\n# " + rcLine);
+ fileDataString.replace("\n" + rcLine, "\n# (This is no longer needed from version 0.8 of the theme engine)\n# " + rcLine);
file.open(IO_WriteOnly);
stream.setDevice(TQT_TQIODEVICE(&file));
diff --git a/src/qt_qt_wrapper.cpp b/src/qt_qt_wrapper.cpp
index 12e145d..495f869 100644
--- a/src/qt_qt_wrapper.cpp
+++ b/src/qt_qt_wrapper.cpp
@@ -319,7 +319,7 @@ void createTQApp()
#endif // USE_FREEBSD
#endif // USE_SOLARIS
- mozillaFix = (cmdLine.tqcontains("mozilla") || cmdLine.tqcontains("firefox"));
+ mozillaFix = (cmdLine.contains("mozilla") || cmdLine.contains("firefox"));
openOfficeFix = (cmdLine.endsWith("soffice.bin"))
| (cmdLine.endsWith("swriter.bin"))
@@ -328,7 +328,7 @@ void createTQApp()
| (cmdLine.endsWith("spadmin.bin"))
| (cmdLine.endsWith("simpress.bin"));
- eclipseFix = cmdLine.tqcontains("eclipse");
+ eclipseFix = cmdLine.contains("eclipse");
gtkQtDebug = (getenv("GTK_TQT_ENGINE_DEBUG") != NULL) ? 1 : 0;
@@ -336,7 +336,7 @@ void createTQApp()
printf("createTQApp()\n");
char* sessionEnv = getenv("SESSION_MANAGER");
- if (TQString(sessionEnv).endsWith(TQString::number(getpid())) || cmdLine.tqcontains("nspluginviewer") || cmdLine.tqcontains("gnome-wm") || cmdLine.tqcontains("metacity") || cmdLine.tqcontains("xfwm4") || (getenv("GTK_TQT_ENGINE_DISABLE") != NULL))
+ if (TQString(sessionEnv).endsWith(TQString::number(getpid())) || cmdLine.contains("nspluginviewer") || cmdLine.contains("gnome-wm") || cmdLine.contains("metacity") || cmdLine.contains("xfwm4") || (getenv("GTK_TQT_ENGINE_DISABLE") != NULL))
{
printf("Not initializing the Gtk-Qt theme engine\n");
}
@@ -403,7 +403,7 @@ void createTQApp()
/*setGnomeFonts();
setGnomeIcons();*/
- if (!cmdLine.tqcontains("xfce-mcs-manager"))
+ if (!cmdLine.contains("xfce-mcs-manager"))
{
// Get KDE related atoms from the X server
kipcCommAtom = XInternAtom ( gdk_x11_get_default_xdisplay() , "KIPC_COMM_ATOM" , false );
@@ -1274,7 +1274,7 @@ void drawMenuItem(GdkWindow* window, GtkStyle* style, GtkStateType state, int x,
TQPainter painter(&pixmap);
TQPopupMenu pm;
TQMenuData md;
- TQMenuItem* mi = md.tqfindItem(md.insertItem(""));
+ TQMenuItem* mi = md.findItem(md.insertItem(""));
TQStyleOption opt(mi, 16, 16);
TQStyle::SFlags sflags = TQStyle::Style_Active | TQStyle::Style_Enabled;
@@ -2047,8 +2047,8 @@ void setRcProperties(GtkRcStyle* rc_style, int forceRecreate)
stream << doIconMapping("gtk-edit", "actions/gtk-edit.png"); //2.6
stream << doIconMapping("gtk-execute", "actions/exec.png");
stream << doIconMapping("gtk-file", "mimetypes/gtk-file.png");
- stream << doIconMapping("gtk-tqfind", "actions/find.png");
- stream << doIconMapping("gtk-tqfind-and-tqreplace", "actions/gtk-tqfind-and-tqreplace.png");
+ stream << doIconMapping("gtk-find", "actions/find.png");
+ stream << doIconMapping("gtk-find-and-replace", "actions/gtk-find-and-replace.png");
stream << doIconMapping("gtk-floppy", "devices/3floppy_unmount.png");
stream << doIconMapping("gtk-fullscreen", "actions/gtk-fullscreen.png");
stream << doIconMapping("gtk-goto-bottom", "actions/bottom.png");
@@ -2131,7 +2131,7 @@ void addIconThemeDir(const TQString& theme)
TQString icondir = kdeFindDir("/share/icons/" + theme + "/", "index.theme", "index.desktop");
if(icondir.isEmpty())
return;
- if (iconThemeDirs.tqcontains(icondir))
+ if (iconThemeDirs.contains(icondir))
return;
// Add this theme to the list
@@ -2155,7 +2155,7 @@ void setMenuBackground(GtkStyle* style)
TQPainter painter(menuBackgroundPixmap);
TQPopupMenu pm;
TQMenuData md;
- TQMenuItem* mi = md.tqfindItem(md.insertItem(""));
+ TQMenuItem* mi = md.findItem(md.insertItem(""));
tqApp->tqstyle().polish(&pm);