From 2ccafcb1d891ed0fff4cc85729ca1faf5b7f1c96 Mon Sep 17 00:00:00 2001 From: Sine Striker <trueful@163.com> Date: 周二, 19 12月 2023 17:59:15 +0800 Subject: [PATCH] Add private warnings and change pictures --- examples/mainwindow/mainwindow.cpp | 6 +----- 1 files changed, 1 insertions(+), 5 deletions(-) diff --git a/examples/mainwindow/mainwindow.cpp b/examples/mainwindow/mainwindow.cpp index 96736de..8b32fe7 100644 --- a/examples/mainwindow/mainwindow.cpp +++ b/examples/mainwindow/mainwindow.cpp @@ -42,7 +42,6 @@ } setWindowTitle(tr("Example MainWindow")); - resize(800, 600); } static inline void emulateLeaveEvent(QWidget *widget) { @@ -107,10 +106,7 @@ void MainWindow::installWindowAgent() { // 1. Setup window agent - auto agent = new QWK::WidgetWindowAgent(this); - if (!agent->setup(this)) { - qFatal("QWK failed to initialize."); - } + QWK::WidgetWindowAgent *agent = QWK::setupWidgetWindow(this); // 2. Construct your title bar auto menuBar = []() { -- Gitblit v1.9.1