summaryrefslogtreecommitdiffstats
path: root/src/gui/editors/guitar/ChordXmlHandler.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/editors/guitar/ChordXmlHandler.cpp')
-rw-r--r--src/gui/editors/guitar/ChordXmlHandler.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/gui/editors/guitar/ChordXmlHandler.cpp b/src/gui/editors/guitar/ChordXmlHandler.cpp
index 6802485..d2f71b4 100644
--- a/src/gui/editors/guitar/ChordXmlHandler.cpp
+++ b/src/gui/editors/guitar/ChordXmlHandler.cpp
@@ -134,9 +134,9 @@ bool
ChordXmlHandler::error(const TQXmlParseException& exception)
{
m_errorString = TQString("%1 at line %2, column %3")
- .arg(exception.message())
- .arg(exception.lineNumber())
- .arg(exception.columnNumber());
+ .tqarg(exception.message())
+ .tqarg(exception.lineNumber())
+ .tqarg(exception.columnNumber());
return TQXmlDefaultHandler::error( exception );
}
@@ -144,9 +144,9 @@ bool
ChordXmlHandler::fatalError(const TQXmlParseException& exception)
{
m_errorString = TQString("%1 at line %2, column %3")
- .arg(exception.message())
- .arg(exception.lineNumber())
- .arg(exception.columnNumber());
+ .tqarg(exception.message())
+ .tqarg(exception.lineNumber())
+ .tqarg(exception.columnNumber());
return TQXmlDefaultHandler::fatalError( exception );
}