Skip to content

Commit

Permalink
Minor code format enhancements.
Browse files Browse the repository at this point in the history
  • Loading branch information
horacekj committed Dec 24, 2019
1 parent b0e877a commit a544111
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions rcs-xn.pro
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ DEFINES += QT_DEPRECATED_WARNINGS
DEFINES += RCS_XN_SHARED_LIBRARY

SOURCES += \
src/rcs-xn.cpp \
src/rcs-xn-gui.cpp \
src/rcs-xn.cpp \
src/rcs-xn-gui.cpp \
src/settings.cpp \
src/signals.cpp \
src/form-signal-edit.cpp \
Expand Down Expand Up @@ -37,7 +37,7 @@ HEADERS += \
lib/xn-lib-cpp-qt/xn-loco-addr.h \
lib/xn-lib-cpp-qt/xn-commands.h \
lib/xn-lib-cpp-qt/xn.h \
lib/q-str-exception.h
lib/q-str-exception.h

CONFIG += c++14 dll
QMAKE_CXXFLAGS += -Wall -Wextra -pedantic
Expand Down
2 changes: 1 addition & 1 deletion src/rcs-xn-gui.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ void RcsXn::guiInit() {
QObject::connect(form.ui.chb_only_one_active, SIGNAL(stateChanged(int)), this,
SLOT(chb_general_config_changed(int)));
QObject::connect(form.ui.chb_forbid_00_output, SIGNAL(stateChanged(int)), this,
SLOT(chb_general_config_changed(int)));
SLOT(chb_general_config_changed(int)));
QObject::connect(form.ui.chb_reset_signals, SIGNAL(stateChanged(int)), this,
SLOT(chb_general_config_changed(int)));
QObject::connect(form.ui.cb_addr_range, SIGNAL(currentIndexChanged(int)), this,
Expand Down
2 changes: 1 addition & 1 deletion src/rcs-xn.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ void RcsXn::scanNextGroup(int previousGroup) {
xn.accInfoRequest(
inBusModuleAddr(this->scan_group), true,
std::make_unique<Xn::Cb>([this](void *s, void *d) { xnOnInitScanningError(s, d); },
reinterpret_cast<void *>(true))
reinterpret_cast<void *>(true))
);
}
}
Expand Down

0 comments on commit a544111

Please sign in to comment.