diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2017-09-25 16:25:44 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2017-09-25 16:30:14 +0200 |
commit | a48349deb6a70631ae95e9e0505930949f1e8dac (patch) | |
tree | 5bdae16bb7f6446cd9591fb4022b6b07c6c690c8 /logic/selected-libraries.hpp | |
parent | fe2a58edc267ff643e50b412f893e15cbafab6b5 (diff) |
logic: remove camel case
Diffstat (limited to 'logic/selected-libraries.hpp')
-rw-r--r-- | logic/selected-libraries.hpp | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/logic/selected-libraries.hpp b/logic/selected-libraries.hpp index 041c77e5..586f7a57 100644 --- a/logic/selected-libraries.hpp +++ b/logic/selected-libraries.hpp @@ -16,8 +16,6 @@ #include <QFrame> -// XXX todo remove camel case in identifier - struct runtime_event_handler { using ext_event_ordinal = IExtension::event_ordinal; @@ -31,7 +29,7 @@ struct runtime_event_handler void run_events(ext_event_ordinal k, Pose& pose); }; -struct OTR_LOGIC_EXPORT SelectedLibraries : runtime_event_handler +struct OTR_LOGIC_EXPORT runtime_libraries : runtime_event_handler { using dylibptr = std::shared_ptr<dylib>; @@ -39,8 +37,8 @@ struct OTR_LOGIC_EXPORT SelectedLibraries : runtime_event_handler std::shared_ptr<IFilter> pFilter; std::shared_ptr<IProtocol> pProtocol; - SelectedLibraries(QFrame* frame, dylibptr t, dylibptr p, dylibptr f); - SelectedLibraries() : pTracker(nullptr), pFilter(nullptr), pProtocol(nullptr), correct(false) {} + runtime_libraries(QFrame* frame, dylibptr t, dylibptr p, dylibptr f); + runtime_libraries() : pTracker(nullptr), pFilter(nullptr), pProtocol(nullptr), correct(false) {} bool correct; }; |