opnsense-ports/devel/qdevelop/files/patch-src_mainimpl.cpp
Franco Fichtner 97e1154653 */*: sync with upstream
Taken from: HardenedBSD
2018-07-30 06:47:24 +02:00

15 lines
489 B
C++

src/mainimpl.cpp:82:19: error: cannot initialize a parameter of type 'QStatusBar *' with an rvalue of type 'bool'
setStatusBar( false );
^~~~~
--- src/mainimpl.cpp.orig 2018-07-28 10:47:16 UTC
+++ src/mainimpl.cpp
@@ -79,7 +79,7 @@ MainImpl::MainImpl(QWidget * parent)
: QMainWindow(parent)
{
setupUi(this);
- setStatusBar( false );
+ setStatusBar( NULL );
m_saveBeforeBuild = true;
m_restoreOnStart = true;
m_projectManager = 0;