diff options
author | Timothy Pearson <[email protected]> | 2011-12-16 09:57:35 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2011-12-16 09:57:35 -0600 |
commit | 6ca08e7a881c0c97f338e0085f75af04ec08ad04 (patch) | |
tree | 5462bef0f060df1c19e3fcb98250e5cfa24edc11 /src/gui/application/main.cpp | |
parent | 4faf11eccc5f08d2aa0540157d6eff80b7cdb02a (diff) | |
download | rosegarden-6ca08e7a881c0c97f338e0085f75af04ec08ad04.tar.gz rosegarden-6ca08e7a881c0c97f338e0085f75af04ec08ad04.zip |
Revert "Rename a number of old tq methods that are no longer tq specific"
This reverts commit 4faf11eccc5f08d2aa0540157d6eff80b7cdb02a.
Diffstat (limited to 'src/gui/application/main.cpp')
-rw-r--r-- | src/gui/application/main.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/gui/application/main.cpp b/src/gui/application/main.cpp index b3147de..ff03584 100644 --- a/src/gui/application/main.cpp +++ b/src/gui/application/main.cpp @@ -246,7 +246,7 @@ and Events (our basic music element). To help lift the ambiguity, and time this corresponds to, that kind of stuff. (In the Notation and Matrix views, the LinedStaff calculates mappings between coordinates and staff lines: the former is especially - complicated because of its support for page layout.)\n + complicated because of its support for page tqlayout.)\n -# The canvas view transmits this kind of info as a signal, which is connected to a slot in the parent EditView. -# The EditView delegates action to the current tool.\n @@ -260,7 +260,7 @@ which "wraps" the complexity into simple calls and performs all the hidden tasks. The EditView also maintains (obviously) its visual appearance with the -layout classes, applying them when appropriate. +tqlayout classes, applying them when appropriate. \section sequencer Sequencer @@ -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.").arg(VERSION).arg(installedVersion), + " environment variable before you can run it.").tqarg(VERSION).tqarg(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").arg(totalRect.width()); - TQString heightKey = TQString("Height %1").arg(totalRect.height()); + TQString widthKey = TQString("Width %1").tqarg(totalRect.width()); + TQString heightKey = TQString("Height %1").tqarg(totalRect.height()); windowWidth = config->readUnsignedNumEntry (widthKey, startupSize.width()); windowHeight = config->readUnsignedNumEntry @@ -722,7 +722,7 @@ int main(int argc, char *argv[]) TQVBox *mw = dialog->makeVBoxMainWidget(); TQHBox *hb = new TQHBox(mw); TQLabel *image = new TQLabel(hb); - image->setAlignment(TQt::AlignTop); + image->tqsetAlignment(TQt::AlignTop); TQString iconFile = locate("appdata", "pixmaps/misc/welcome-icon.png"); if (!iconFile.isNull()) { image->setPixmap(TQPixmap(iconFile)); |