summaryrefslogtreecommitdiff
path: root/wx+/popup_dlg.cpp
diff options
context:
space:
mode:
authorDaniel Wilhelm <shieldwed@outlook.com>2018-05-09 00:04:33 +0200
committerDaniel Wilhelm <shieldwed@outlook.com>2018-05-09 00:04:33 +0200
commit017e56b81ba735c39c43701f737ac7dde55da7b4 (patch)
treeea7aaaee13a06a702701e2f74f5d390e10ae303e /wx+/popup_dlg.cpp
parent9.4 (diff)
downloadFreeFileSync-017e56b81ba735c39c43701f737ac7dde55da7b4.tar.gz
FreeFileSync-017e56b81ba735c39c43701f737ac7dde55da7b4.tar.bz2
FreeFileSync-017e56b81ba735c39c43701f737ac7dde55da7b4.zip
9.5
Diffstat (limited to 'wx+/popup_dlg.cpp')
-rwxr-xr-xwx+/popup_dlg.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/wx+/popup_dlg.cpp b/wx+/popup_dlg.cpp
index 19c721ad..1d18be5e 100755
--- a/wx+/popup_dlg.cpp
+++ b/wx+/popup_dlg.cpp
@@ -114,7 +114,7 @@ public:
if (parent && parent->IsShownOnScreen())
SetTitle(titleTmp);
else
- SetTitle(wxTheApp->GetAppDisplayName() + L" - " + titleTmp);
+ SetTitle(wxTheApp->GetAppDisplayName() + SPACED_DASH + titleTmp);
}
int maxWidth = 500;
bgstack15