mirror of
https://gitee.com/spark-store-project/spark-store
synced 2026-06-23 06:33:49 +08:00
12 lines
289 B
C++
12 lines
289 B
C++
#include <DGuiApplicationHelper>
|
|
#include <DPlatformWindowHandle>
|
|
#include "spkdtkplugin_impl.h"
|
|
|
|
using Dtk::Widget::DPlatformWindowHandle;
|
|
|
|
void SpkDtkPluginImpl::addWindow(QWidget *w, QObject *parent)
|
|
{
|
|
DPlatformWindowHandle *h = new DPlatformWindowHandle(w, parent);
|
|
Q_UNUSED(h);
|
|
}
|