Menurama: Fix custom application class constructor signature
Change-Id: I989b9205dde9280f97dedbaad47ef4a8d75004ac Reviewed-by: Jake Petroules <jake.petroules@qt.io>
This commit is contained in:
parent
4532a9590b
commit
f55a40ac03
@ -28,7 +28,7 @@
|
|||||||
|
|
||||||
#include "menuramaapplication.h"
|
#include "menuramaapplication.h"
|
||||||
|
|
||||||
MenuramaApplication::MenuramaApplication(int argc, char **argv)
|
MenuramaApplication::MenuramaApplication(int &argc, char **argv)
|
||||||
: QApplication (argc, argv)
|
: QApplication (argc, argv)
|
||||||
{
|
{
|
||||||
#if 0
|
#if 0
|
||||||
|
@ -36,7 +36,7 @@
|
|||||||
class MenuramaApplication : public QApplication
|
class MenuramaApplication : public QApplication
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
MenuramaApplication(int argc, char **argv);
|
MenuramaApplication(int &argc, char **argv);
|
||||||
void addDynMenu(QLatin1String title, QMenu *parentMenu);
|
void addDynMenu(QLatin1String title, QMenu *parentMenu);
|
||||||
QAction *findAction(QLatin1String title, QMenu *parentMenu);
|
QAction *findAction(QLatin1String title, QMenu *parentMenu);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user