diff options
Diffstat (limited to 'quanta/utility/quantabookmarks.cpp')
| -rw-r--r-- | quanta/utility/quantabookmarks.cpp | 10 | 
1 files changed, 5 insertions, 5 deletions
diff --git a/quanta/utility/quantabookmarks.cpp b/quanta/utility/quantabookmarks.cpp index 3208a874..e5329b8a 100644 --- a/quanta/utility/quantabookmarks.cpp +++ b/quanta/utility/quantabookmarks.cpp @@ -196,7 +196,7 @@ int QuantaBookmarks::insertBookmarks(TQPopupMenu& menu, Document *doc, bool inse          }          menu.insertItem( -            TQString("%1 - \"%2\"").tqarg( (*it)->line+1 ).tqarg( bText ), +            TQString("%1 - \"%2\"").arg( (*it)->line+1 ).arg( bText ),               0, (*it)->line, idx );          insertedItems++; @@ -219,15 +219,15 @@ int QuantaBookmarks::insertBookmarks(TQPopupMenu& menu, Document *doc, bool inse        idx = ++old_menu_count;        if ( next )        { -        m_goNext->setText( i18n("&Next: %1 - \"%2\"").tqarg( next->line + 1 ) -            .tqarg( KStringHandler::rsqueeze( doc->editIf->textLine( next->line ), 24 ) ) ); +        m_goNext->setText( i18n("&Next: %1 - \"%2\"").arg( next->line + 1 ) +            .arg( KStringHandler::rsqueeze( doc->editIf->textLine( next->line ), 24 ) ) );          m_goNext->plug( &menu, idx );          idx++;        }        if ( prev )        { -        m_goPrevious->setText( i18n("&Previous: %1 - \"%2\"").tqarg(prev->line + 1 ) -            .tqarg( KStringHandler::rsqueeze( doc->editIf->textLine( prev->line ), 24 ) ) ); +        m_goPrevious->setText( i18n("&Previous: %1 - \"%2\"").arg(prev->line + 1 ) +            .arg( KStringHandler::rsqueeze( doc->editIf->textLine( prev->line ), 24 ) ) );          m_goPrevious->plug( &menu, idx );          idx++;        }  | 
