Skip to content

Commit 031c0e9

Browse files
committed
minor tweaks
1 parent 7aebe27 commit 031c0e9

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/core/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ if(QWINDOWKIT_ENABLE_STYLE_AGENT)
8585
list(APPEND _src style/styleagent_linux.cpp)
8686
endif()
8787
else()
88-
list(APPEND _sync_include_options EXCLUDE "style/\\.+")
88+
list(APPEND _sync_include_options EXCLUDE "src/core/style/\\.+")
8989
endif()
9090

9191
qwk_add_library(${PROJECT_NAME} AUTOGEN

src/quick/quickwindowagent.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ namespace QWK {
4444
#endif
4545

4646
Q_SIGNALS:
47-
void titleBarWidgetChanged(const QQuickItem *item);
48-
void systemButtonChanged(SystemButton button, const QQuickItem *item);
47+
void titleBarWidgetChanged(QQuickItem *item);
48+
void systemButtonChanged(SystemButton button, QQuickItem *item);
4949

5050
protected:
5151
QuickWindowAgent(QuickWindowAgentPrivate &d, QObject *parent = nullptr);

src/widgets/widgetwindowagent.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ namespace QWK {
4343
void setHitTestVisible(const QWidget *w, bool visible = true);
4444

4545
Q_SIGNALS:
46-
void titleBarChanged(const QWidget *w);
47-
void systemButtonChanged(SystemButton button, const QWidget *w);
46+
void titleBarChanged(QWidget *w);
47+
void systemButtonChanged(SystemButton button, QWidget *w);
4848

4949
protected:
5050
WidgetWindowAgent(WidgetWindowAgentPrivate &d, QObject *parent = nullptr);

0 commit comments

Comments
 (0)