diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2020-06-15 16:43:44 +0200 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2020-06-15 16:46:34 +0200 |
commit | a541bd310728d99677aa2f9ba89cd448be3d0945 (patch) | |
tree | da32141ab4c7ab2e596608e9d38d492c228159c5 /config/exportthemedialog.cpp | |
parent | ecd0b13f8f4d7a17ed31e5e3277a56828210d4e0 (diff) | |
download | tde-style-qtcurve-a541bd310728d99677aa2f9ba89cd448be3d0945.tar.gz tde-style-qtcurve-a541bd310728d99677aa2f9ba89cd448be3d0945.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>
(cherry picked from commit 0e4dbeb2ed74ecace9cfa664315e89bfead41b34)
Diffstat (limited to 'config/exportthemedialog.cpp')
-rw-r--r-- | config/exportthemedialog.cpp | 2 |
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()); |