diff options
author | Timothy Pearson <[email protected]> | 2012-02-14 21:17:45 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2012-02-14 21:17:45 -0600 |
commit | 6186b3b04fb1fa7e170bbf512d50c54fdbe2f733 (patch) | |
tree | 67aed3012f98c4f8c868bd43b03ba5f8dfcbe881 /atlantik/client | |
parent | 20d45c62f557a9dd511c5544df42c23af1d56e23 (diff) | |
download | tdegames-6186b3b04fb1fa7e170bbf512d50c54fdbe2f733.tar.gz tdegames-6186b3b04fb1fa7e170bbf512d50c54fdbe2f733.zip |
Update various qt function definitions and static methods for tqt3
Diffstat (limited to 'atlantik/client')
-rw-r--r-- | atlantik/client/selectconfiguration_widget.cpp | 2 | ||||
-rw-r--r-- | atlantik/client/selectgame_widget.cpp | 2 | ||||
-rw-r--r-- | atlantik/client/selectserver_widget.cpp | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/atlantik/client/selectconfiguration_widget.cpp b/atlantik/client/selectconfiguration_widget.cpp index 700856f2..2d500976 100644 --- a/atlantik/client/selectconfiguration_widget.cpp +++ b/atlantik/client/selectconfiguration_widget.cpp @@ -39,7 +39,7 @@ SelectConfiguration::SelectConfiguration(AtlanticCore *atlanticCore, TQWidget *p m_game = 0; m_mainLayout = new TQVBoxLayout(this, KDialog::marginHint()); - Q_CHECK_PTR(m_mainLayout); + TQ_CHECK_PTR(m_mainLayout); // Game configuration. m_configBox = new TQVGroupBox(i18n("Game Configuration"), this, "configBox"); diff --git a/atlantik/client/selectgame_widget.cpp b/atlantik/client/selectgame_widget.cpp index 0769dfc2..573f2841 100644 --- a/atlantik/client/selectgame_widget.cpp +++ b/atlantik/client/selectgame_widget.cpp @@ -37,7 +37,7 @@ SelectGame::SelectGame(AtlanticCore *atlanticCore, TQWidget *parent, const char connect(m_atlanticCore, TQT_SIGNAL(removeGUI(Game *)), this, TQT_SLOT(delGame(Game *))); m_mainLayout = new TQVBoxLayout(this, KDialog::marginHint()); - Q_CHECK_PTR(m_mainLayout); + TQ_CHECK_PTR(m_mainLayout); TQVGroupBox *groupBox; groupBox = new TQVGroupBox(i18n("Create or Select monopd Game"), this, "groupBox"); diff --git a/atlantik/client/selectserver_widget.cpp b/atlantik/client/selectserver_widget.cpp index 97a594c4..7adc506b 100644 --- a/atlantik/client/selectserver_widget.cpp +++ b/atlantik/client/selectserver_widget.cpp @@ -33,7 +33,7 @@ SelectServer::SelectServer(bool useMonopigatorOnStart, bool hideDevelopmentServe m_hideDevelopmentServers = hideDevelopmentServers; m_mainLayout = new TQVBoxLayout(this, KDialog::marginHint()); - Q_CHECK_PTR(m_mainLayout); + TQ_CHECK_PTR(m_mainLayout); // Custom server group TQHGroupBox *customGroup = new TQHGroupBox(i18n("Enter Custom monopd Server"), this, "customGroup"); |