diff options
author | Timothy Pearson <[email protected]> | 2011-12-19 11:39:04 -0600 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2012-07-31 02:21:58 +0200 |
commit | 7aeaea8c78498645c4a0871a0b63b9481a02242d (patch) | |
tree | e582647c185cd842b65dae69471ba5f3bf4b299d | |
parent | 017d4e0aacacc944a26a69e190ea02000a8f27ee (diff) | |
download | kpicosim-7aeaea8c78498645c4a0871a0b63b9481a02242d.tar.gz kpicosim-7aeaea8c78498645c4a0871a0b63b9481a02242d.zip |
Remove additional unneeded tq method conversions
(cherry picked from commit d6c74708032dfcd93e0071691c02db5eaf97b313)
-rwxr-xr-x | src/codeeditor.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/codeeditor.cpp b/src/codeeditor.cpp index a8e1dae..19c48f5 100755 --- a/src/codeeditor.cpp +++ b/src/codeeditor.cpp @@ -74,7 +74,7 @@ void CodeEditor::slotCursorPositionChanged() { unsigned int line, column ; m_view->cursorPosition( &line, &column ) ; - m_statusBar->changeItem( TQString( " Line: %1 Col: %2 " ).tqarg( TQString::number( line+1 ) ).tqarg( TQString::number( column+1 ) ), 0 ) ; + m_statusBar->changeItem( TQString( " Line: %1 Col: %2 " ).arg( TQString::number( line+1 ) ).arg( TQString::number( column+1 ) ), 0 ) ; } void CodeEditor::slotToggleBreakpoint() @@ -250,7 +250,7 @@ bool CodeEditor::askSave() else filename = "Untitled" ; - int choice = KMessageBox::warningYesNoCancel( this, TQString( "The document \'%1\' has been modified.\nDo you want to save it?").tqarg( filename ), "Save Document?", KGuiItem( "Save" ), KGuiItem( "Discard" ) ); + int choice = KMessageBox::warningYesNoCancel( this, TQString( "The document \'%1\' has been modified.\nDo you want to save it?").arg( filename ), "Save Document?", KGuiItem( "Save" ), KGuiItem( "Discard" ) ); if ( choice == KMessageBox::Yes ) save() ; |