diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2018-07-02 03:31:07 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2018-07-02 03:31:07 +0200 |
commit | c342db9623f9f21451dce73e27bd21d24579b40a (patch) | |
tree | d29a4c7cded9c24619c88aca76f31d72f1c6edae /proto-vjoy/ftnoir_protocol_vjoy_dialog.cpp | |
parent | dd063f79f6052959aff9ccff0f575888f0ce4b93 (diff) |
proto/vjoystick: untested but likely works
Diffstat (limited to 'proto-vjoy/ftnoir_protocol_vjoy_dialog.cpp')
-rw-r--r-- | proto-vjoy/ftnoir_protocol_vjoy_dialog.cpp | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/proto-vjoy/ftnoir_protocol_vjoy_dialog.cpp b/proto-vjoy/ftnoir_protocol_vjoy_dialog.cpp deleted file mode 100644 index 08c65558..00000000 --- a/proto-vjoy/ftnoir_protocol_vjoy_dialog.cpp +++ /dev/null @@ -1,22 +0,0 @@ -#include "ftnoir_protocol_vjoy.h" -#include "opentrack/plugin-api.hpp" - -VJoyControls::VJoyControls() -{ - ui.setupUi( this ); - connect(ui.btnOK, SIGNAL(clicked()), this, SLOT(doOK())); - connect(ui.btnCancel, SIGNAL(clicked()), this, SLOT(doCancel())); -} - -void VJoyControls::doOK() { - save(); - this->close(); -} - -void VJoyControls::doCancel() { - this->close(); -} - -void VJoyControls::save() { -} - |