summaryrefslogtreecommitdiffstats
path: root/lib/kotext/KoImportStyleDia.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/kotext/KoImportStyleDia.cpp')
-rw-r--r--lib/kotext/KoImportStyleDia.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/kotext/KoImportStyleDia.cpp b/lib/kotext/KoImportStyleDia.cpp
index 327dbe53..6d9d57d6 100644
--- a/lib/kotext/KoImportStyleDia.cpp
+++ b/lib/kotext/KoImportStyleDia.cpp
@@ -98,7 +98,7 @@ TQString KoImportStyleDia::generateStyleName( const TQString & templateName ) co
int num = 1;
bool exists;
do {
- name = templateName.tqarg( num );
+ name = templateName.arg( num );
exists = m_currentCollection->findStyle( name ) != 0;
++num;
} while ( exists );
@@ -111,7 +111,7 @@ TQString KoImportStyleDia::generateStyleDisplayName( const TQString & templateNa
int num = 1;
bool exists;
do {
- name = templateName.tqarg( num );
+ name = templateName.arg( num );
exists = m_currentCollection->findStyleByDisplayName( name ) != 0;
++num;
} while ( exists );