diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2018-05-27 21:42:40 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2018-05-27 21:42:40 +0200 |
commit | fe84167434b767a172e5277ad4de260bb915a2a4 (patch) | |
tree | 8d2534a7b0354e0246d5ee6f538efec4ff394201 /gui/init.hpp | |
parent | 392c0b904a56ea84f2069080ff1e3303cc775e00 (diff) |
gui: fix link error due to differing prototype
Reported-by: Artem Sobolev
Diffstat (limited to 'gui/init.hpp')
-rw-r--r-- | gui/init.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/init.hpp b/gui/init.hpp index 1142ff24..7c437bcb 100644 --- a/gui/init.hpp +++ b/gui/init.hpp @@ -5,7 +5,7 @@ #include <functional> #include <QWidget> -int OTR_GUI_EXPORT otr_main(int argc, char** argv, std::function<QWidget*()> make_main_window); +OTR_GUI_EXPORT int otr_main(int argc, char** argv, std::function<QWidget*()> const& make_main_window); // XXX TODO need split MainWindow into mixins each implementing part of the functionality |