summaryrefslogtreecommitdiffstats
path: root/config/exportthemedialog.cpp
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2020-06-15 16:43:44 +0200
committerSlávek Banko <slavek.banko@axis.cz>2020-06-15 16:43:48 +0200
commit0e4dbeb2ed74ecace9cfa664315e89bfead41b34 (patch)
tree5f458de41aa6f7ba23ed0fd0225f9f237af524e1 /config/exportthemedialog.cpp
parent13e18cc4ccc8120a40dac168c6d88c7f1faed203 (diff)
downloadtde-style-qtcurve-0e4dbeb2ed74ecace9cfa664315e89bfead41b34.tar.gz
tde-style-qtcurve-0e4dbeb2ed74ecace9cfa664315e89bfead41b34.zip
Fix FTBFS with stricter C++11.
This also fixes the inability to translate the description of file types used in KFileDialog calls. Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
Diffstat (limited to 'config/exportthemedialog.cpp')
-rw-r--r--config/exportthemedialog.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/config/exportthemedialog.cpp b/config/exportthemedialog.cpp
index 32bd2e5..ccb9cce 100644
--- a/config/exportthemedialog.cpp
+++ b/config/exportthemedialog.cpp
@@ -64,7 +64,7 @@ void CExportThemeDialog::slotOk()
KMessageBox::error(this, i18n("Name is empty!"));
else
{
- TQString fileName(themeUrl->url()+"/"THEME_PREFIX+name+".themerc");
+ TQString fileName(themeUrl->url()+"/"+THEME_PREFIX+name+".themerc");
TDEConfig cfg(fileName, false, false);
bool rv(!cfg.isReadOnly());