blob: 0630ce30f695e9b38f500b08ed693f50dc1b6a04 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
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;
|