diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-08-18 21:52:57 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-08-18 22:06:50 +0300 |
commit | 7272851afd9e3a8fcdb531900a8e5c43af417a4b (patch) | |
tree | 4c39553287cf3f6edc1d5ca620f3c4e780d69df6 /src/commands.cpp | |
parent | e21479ccc48ed8383a6ab72f45c43e12e8dffa69 (diff) | |
download | plus-7272851afd9e3a8fcdb531900a8e5c43af417a4b.tar.gz plus-7272851afd9e3a8fcdb531900a8e5c43af417a4b.tar.bz2 plus-7272851afd9e3a8fcdb531900a8e5c43af417a4b.tar.xz plus-7272851afd9e3a8fcdb531900a8e5c43af417a4b.zip |
Add parameter for button name in okdialog.
Diffstat (limited to 'src/commands.cpp')
-rw-r--r-- | src/commands.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/commands.cpp b/src/commands.cpp index 12207be20..9eb5176d1 100644 --- a/src/commands.cpp +++ b/src/commands.cpp @@ -1342,7 +1342,10 @@ static int uploadUpdate(void *ptr, else { // TRANSLATORS: file uploaded message - new OkDialog(_("File uploaded"), str, DialogType::OK, + new OkDialog(_("File uploaded"), str, + // TRANSLATORS: ok dialog button + _("OK"), + DialogType::OK, true, false, nullptr, 260); } } |