mirror of
https://git.freebsd.org/ports.git
synced 2025-06-30 00:50:29 -04:00
src/mainimpl.cpp:82:19: error: cannot initialize a parameter of type 'QStatusBar *' with an rvalue of type 'bool' setStatusBar( false ); ^~~~~ http://beefy12.nyi.freebsd.org/data/head-amd64-default/p475044_s336572/logs/qdevelop-0.28_3.log
15 lines
489 B
C++
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;
|