diff options
Diffstat (limited to 'src/jalv_qt4.cpp')
-rw-r--r-- | src/jalv_qt4.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/jalv_qt4.cpp b/src/jalv_qt4.cpp index a765770..abe100a 100644 --- a/src/jalv_qt4.cpp +++ b/src/jalv_qt4.cpp @@ -53,7 +53,7 @@ jalv_ui_resize(Jalv* jalv, int width, int height) class Timer : public QTimer { public: - Timer(Jalv* j) : jalv(j) {} + explicit Timer(Jalv* j) : jalv(j) {} void timerEvent(QTimerEvent* e) { jalv_emit_ui_events(jalv); @@ -86,4 +86,4 @@ jalv_open_ui(Jalv* jalv, return ret; } -} // extern "C" +} // extern "C" |