Skip to content

Commit a96e05a

Browse files
committed
Fixup codestyle
1 parent e474aaf commit a96e05a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/controls/nemofocussingleton.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,14 @@
2121

2222
static std::shared_ptr<NemoFocusSingleton> _instance = nullptr;
2323

24-
NemoFocusSingleton::NemoFocusSingleton(QObject *parent)
25-
:m_edit(nullptr)
24+
NemoFocusSingleton::NemoFocusSingleton(QObject* parent)
25+
: m_edit(nullptr)
2626
{
2727
}
2828

2929
void NemoFocusSingleton::nemoregister(QObject* edit)
3030
{
31-
if(edit != nullptr) {
31+
if (edit != nullptr) {
3232
m_edit = std::make_shared<QObject>(edit);
3333
}
3434
}

src/controls/nemofocussingleton.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
class NemoFocusSingleton : public QObject {
2626
Q_OBJECT
27-
Q_DISABLE_COPY(NemoFocusSingleton)
27+
Q_DISABLE_COPY(NemoFocusSingleton)
2828

2929
public:
3030
NemoFocusSingleton(QObject* parent = nullptr);

0 commit comments

Comments
 (0)