We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6eb2efe commit baaefabCopy full SHA for baaefab
examples/shared/widgetframe/windowbar.h
@@ -62,7 +62,7 @@ namespace QWK {
62
protected:
63
WindowBar(WindowBarPrivate &d, QWidget *parent = nullptr);
64
65
- const std::unique_ptr<WindowBarPrivate> d_ptr;
+ QScopedPointer<WindowBarPrivate> d_ptr;
66
};
67
68
}
src/QWindowKitConfig.cmake.in
@@ -2,4 +2,7 @@
2
3
include(CMakeFindDependencyMacro)
4
5
+find_dependency(QT NAMES Qt6 Qt5 COMPONENTS Core Gui REQUIRED)
6
+find_dependency(Qt${QT_VERSION_MAJOR} COMPONENTS Core Gui REQUIRED)
7
+
8
include("${CMAKE_CURRENT_LIST_DIR}/QWindowKitTargets.cmake")
0 commit comments