Skip to content

Commit

Permalink
Code cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
neochapay committed Feb 7, 2025
1 parent b5c61ab commit a52b2ee
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/core/plugin.cpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#include "plugin.h"
#include "nemoimageprovider.h"
#include "theme.h"
#include "sizing.h"
#include "theme.h"
#include <QtQml>

void QQuickNemoControlsExtensionPlugin::registerTypes(const char* uri)
Expand Down
4 changes: 2 additions & 2 deletions src/core/theme.h
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ class Theme : public QObject {

public:
explicit Theme(QObject* parent = nullptr);
Sizing* size() const {return m_size;}
Sizing* size() const { return m_size; }

Q_INVOKABLE bool loadTheme(const QString fileName);
qreal itemWidthLarge() const { return m_itemWidthLarge; }
Expand Down Expand Up @@ -110,7 +110,7 @@ class Theme : public QObject {
qreal iconSizeLauncher() const { return m_iconSizeLauncher; }
QString themePath() const { return m_theme; }

qreal itemWidthExtraLarge() const {return m_itemHeightExtraLarge; }
qreal itemWidthExtraLarge() const { return m_itemHeightExtraLarge; }

signals:
void themeUpdated();
Expand Down

0 comments on commit a52b2ee

Please sign in to comment.