diff options
Diffstat (limited to 'src/gui/application/main.cpp')
-rw-r--r-- | src/gui/application/main.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/application/main.cpp b/src/gui/application/main.cpp index 3b42d7b..b2111a8 100644 --- a/src/gui/application/main.cpp +++ b/src/gui/application/main.cpp @@ -379,7 +379,7 @@ void testInstalledVersion() " 2. The upgrade was installed in a non-standard directory,\n" " and an old version was found in a standard directory. If so,\n" " you will need to add the correct directory to your TDEDIRS\n" - " environment variable before you can run it.").tqarg(VERSION).tqarg(installedVersion), + " environment variable before you can run it.").arg(VERSION).arg(installedVersion), i18n("Installation problem")); } else { @@ -531,8 +531,8 @@ int main(int argc, char *argv[]) startupSize = TQSize((desktopRect.width() * 4) / 5, (desktopRect.height() * 4) / 5); } - TQString widthKey = TQString("Width %1").tqarg(totalRect.width()); - TQString heightKey = TQString("Height %1").tqarg(totalRect.height()); + TQString widthKey = TQString("Width %1").arg(totalRect.width()); + TQString heightKey = TQString("Height %1").arg(totalRect.height()); windowWidth = config->readUnsignedNumEntry (widthKey, startupSize.width()); windowHeight = config->readUnsignedNumEntry |