diff options
Diffstat (limited to 'kompare/libdiff2/diffhunk.cpp')
-rw-r--r-- | kompare/libdiff2/diffhunk.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kompare/libdiff2/diffhunk.cpp b/kompare/libdiff2/diffhunk.cpp index efa7e12d..3fbd082e 100644 --- a/kompare/libdiff2/diffhunk.cpp +++ b/kompare/libdiff2/diffhunk.cpp @@ -97,7 +97,7 @@ TQString DiffHunk::recreateHunk() const } // recreate header - hunk += TQString::tqfromLatin1( "@@ -%1,%3 +%2,%4 @@" ) + hunk += TQString::fromLatin1( "@@ -%1,%3 +%2,%4 @@" ) .tqarg( m_sourceLine ) .tqarg( m_destinationLine ) .tqarg( slc ) @@ -106,7 +106,7 @@ TQString DiffHunk::recreateHunk() const if ( !m_function.isEmpty() ) hunk += " " + m_function; - hunk += TQString::tqfromLatin1( "\n" ); + hunk += TQString::fromLatin1( "\n" ); hunk += differences; |