diff options
Diffstat (limited to 'src/recentfilesaction.cpp')
-rw-r--r-- | src/recentfilesaction.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/recentfilesaction.cpp b/src/recentfilesaction.cpp index deba448..22f0d24 100644 --- a/src/recentfilesaction.cpp +++ b/src/recentfilesaction.cpp @@ -86,7 +86,7 @@ void RecentFilesAction::loadEntries() // read file list for( unsigned int i = 1 ; i <= m_maxItems ; i++ ) { - key = TQString( "File%1" ).tqarg( i ); + key = TQString( "File%1" ).arg( i ); value = config->readPathEntry( key ); if (!value.isNull()) @@ -116,7 +116,7 @@ void RecentFilesAction::saveEntries() // write file list for( unsigned int i = 1 ; i <= lst.count() ; i++ ) { - key = TQString( "File%1" ).tqarg( i ); + key = TQString( "File%1" ).arg( i ); value = lst[ i - 1 ]; config->writePathEntry( key, value ); } |