diff options
author | Timothy Pearson <[email protected]> | 2011-12-19 11:37:31 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2011-12-19 11:37:31 -0600 |
commit | e1cddce9af7ab2eeaa5613e91e6899128b1ce5ab (patch) | |
tree | bc87855cfcaadc07220903dacdfa454c2db386e1 /src/knutclient.cpp | |
parent | c895c15390ccba4dea8848a6eef98c7a4527c4e3 (diff) | |
download | knutclient-e1cddce9af7ab2eeaa5613e91e6899128b1ce5ab.tar.gz knutclient-e1cddce9af7ab2eeaa5613e91e6899128b1ce5ab.zip |
Remove additional unneeded tq method conversions
Diffstat (limited to 'src/knutclient.cpp')
-rwxr-xr-x | src/knutclient.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/knutclient.cpp b/src/knutclient.cpp index c9eac64..3c4adb1 100755 --- a/src/knutclient.cpp +++ b/src/knutclient.cpp @@ -281,7 +281,7 @@ void KNutClient::slotErrorConnection (int error) { m_mainUpsInfo.reconnectCount++; if (m_mainUpsInfo.reconnectCount > countNextConnDelay) m_mainUpsInfo.reconnectCount = countNextConnDelay; - addEventString(i18n("The connection failed. The next connection will make after %1 sec.").tqarg(nextConnDelay[m_mainUpsInfo.reconnectCount-1]),m_mainUpsInfo.record.name); + addEventString(i18n("The connection failed. The next connection will make after %1 sec.").arg(nextConnDelay[m_mainUpsInfo.reconnectCount-1]),m_mainUpsInfo.record.name); m_reconnectTimer->start( nextConnDelay[m_mainUpsInfo.reconnectCount-1]*1000, TRUE ); // starts reconnect timer again } else { @@ -1096,7 +1096,7 @@ void KNutClient::slotRefreshConnection(void) { if (m_myDock) { m_myDock->clearDockValues(); // myDock->initImage(); - // myDock->tqrepaint(); + // myDock->repaint(); } if (mainWindow) { mainWindow->cleanPanels(); |