summaryrefslogtreecommitdiffstats
path: root/kchart/kchart_part.cc
diff options
context:
space:
mode:
Diffstat (limited to 'kchart/kchart_part.cc')
-rw-r--r--kchart/kchart_part.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/kchart/kchart_part.cc b/kchart/kchart_part.cc
index f0fda2f0..fa34dc20 100644
--- a/kchart/kchart_part.cc
+++ b/kchart/kchart_part.cc
@@ -225,12 +225,12 @@ void KChartPart::generateBarChartTemplate()
// Fill column label, but only on the first iteration.
if (row == 0) {
- m_colLabels << i18n("Column %1").tqarg(col + 1);
+ m_colLabels << i18n("Column %1").arg(col + 1);
}
}
// Fill row label.
- m_rowLabels << i18n("Row %1").tqarg(row + 1);
+ m_rowLabels << i18n("Row %1").arg(row + 1);
}
}
@@ -994,7 +994,7 @@ bool KChartPart::loadOasis( const TQDomDocument& doc,
if ( localName.isEmpty() )
setErrorMessage( i18n( "Invalid OASIS OpenDocument file. No tag found inside office:body." ) );
else
- setErrorMessage( i18n( "This document is not a chart, but %1. Please try opening it with the appropriate application." ).tqarg( KoDocument::tagNameToDocumentType( localName ) ) );
+ setErrorMessage( i18n( "This document is not a chart, but %1. Please try opening it with the appropriate application." ).arg( KoDocument::tagNameToDocumentType( localName ) ) );
return false;
}