summaryrefslogtreecommitdiffstats
path: root/kword/KWTableStyle.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kword/KWTableStyle.cpp')
-rw-r--r--kword/KWTableStyle.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/kword/KWTableStyle.cpp b/kword/KWTableStyle.cpp
index 99ecfacb..47f9029b 100644
--- a/kword/KWTableStyle.cpp
+++ b/kword/KWTableStyle.cpp
@@ -181,7 +181,7 @@ void KWTableStyle::saveOasis( KoGenStyles& mainStyles, KoSavingContext& /*saving
// try to preserve existing internal name, if it looks adequate (no spaces)
// ## TODO: check XML-Schemacs NCName conformity
- const bool nameIsConform = !m_name.isEmpty() && m_name.tqfind( ' ' ) == -1;
+ const bool nameIsConform = !m_name.isEmpty() && m_name.find( ' ' ) == -1;
TQString newName;
if ( nameIsConform )
newName = mainStyles.lookup( tableCellStyle, m_name, KoGenStyles::DontForceNumbering );