diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2017-12-10 22:22:13 +0100 |
---|---|---|
committer | Lubomir I. Ivanov <neolit123@gmail.com> | 2017-12-11 00:17:39 +0100 |
commit | ea0cbba804d5809c60d538d56e5542c9fa305d27 (patch) | |
tree | 10d4e530c0609ad4d5ab060621e852497f6e4248 /subsurface-mobile-main.cpp | |
parent | fa469aa86cfd4651cce07f03717427ec718bea81 (diff) | |
download | subsurface-ea0cbba804d5809c60d538d56e5542c9fa305d27.tar.gz |
Remove second parameter (bool force) in set_filename()
The last force=false case was removed in commit 96d1cc570e31396039e4970d2bf75d5f00f1e550.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'subsurface-mobile-main.cpp')
-rw-r--r-- | subsurface-mobile-main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/subsurface-mobile-main.cpp b/subsurface-mobile-main.cpp index 03a28e5e8..291a25125 100644 --- a/subsurface-mobile-main.cpp +++ b/subsurface-mobile-main.cpp @@ -52,9 +52,9 @@ int main(int argc, char **argv) taglist_init_global(); init_ui(); if (prefs.default_file_behavior == LOCAL_DEFAULT_FILE) - set_filename(prefs.default_filename, true); + set_filename(prefs.default_filename); else - set_filename(NULL, true); + set_filename(NULL); // some hard coded settings prefs.animation_speed = 0; // we render the profile to pixmap, no animations |