diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2021-08-16 20:24:39 +0200 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2021-08-18 01:22:42 +0200 |
commit | 8cf5fe99d8b20f0683c62434fd5305b29e1dfa2f (patch) | |
tree | 083d3c0cd5d75f10a10c3463c14b061057cb8db2 /src/qalculatefunctionsdialog.cpp | |
parent | 776ef1e137b59624bfb902cfa3c427be976caed2 (diff) | |
download | qalculate-tde-8cf5fe99.tar.gz qalculate-tde-8cf5fe99.zip |
Added controlled conversions to char* instead of automatic ascii conversions.
The definition of -UTQT_NO_ASCII_CAST is no longer needed.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
(cherry picked from commit c9792a21add7beeb698ae43d71580e2943dac395)
Diffstat (limited to 'src/qalculatefunctionsdialog.cpp')
-rw-r--r-- | src/qalculatefunctionsdialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qalculatefunctionsdialog.cpp b/src/qalculatefunctionsdialog.cpp index d60c9be..7ea9e90 100644 --- a/src/qalculatefunctionsdialog.cpp +++ b/src/qalculatefunctionsdialog.cpp @@ -366,7 +366,7 @@ void QalculateFunctionsDialog::functionSelected() { str += "<br>"; if(f->subtype() == SUBTYPE_DATA_SET) { str += "<br>"; - str2.sprintf(i18n("Retrieves data from the %s data set for a given object and property. If \"info\" is typed as property, a dialog window will pop up with all properties of the object."), f->title().c_str()); + str2.sprintf(i18n("Retrieves data from the %s data set for a given object and property. If \"info\" is typed as property, a dialog window will pop up with all properties of the object.").utf8(), f->title().c_str()); str2.replace("<", "<"); str2.replace(">", ">"); str += str2; |