gpt4 book ai didi

c++ - Qt错误: `qApp' was not declared in this scope

转载 作者:可可西里 更新时间:2023-11-01 18:16:08 24 4
gpt4 key购买 nike

据我所知,qApp 是全局指针,因此它应该可以在任何地方访问,但我收到此错误 error: qApp was not declared in this scope

  1 #include "textEdit.h"
2
3 TextEdit::TextEdit() {
4 }
5
6 void TextEdit::insertFromMimeData (const QMimeData * source) {
7 if (qApp->mouseButtons() == Qt::MidButton) {
8 return;
9 }
10 QTextEdit::insertFromMimeData(source);
11 }
12
13

最佳答案

你需要使用

#include <QApplication>

使用 qApp 宏。请参阅 http://doc.qt.io/qt-5/qapplication.html#qApp 处的文档

关于c++ - Qt错误: `qApp' was not declared in this scope,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17814764/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com