remove warning about non-static init...

warning was: non-static data member initializers only available with
-std=c++11 or -std=gnu++11
This commit is contained in:
marshmellow42 2017-06-07 15:42:28 -04:00
commit 2c51d4cfa6

View file

@ -128,7 +128,7 @@ public:
void run(); void run();
private: private:
char *script_cmds_file = NULL; char *script_cmds_file = NULL;
bool usb_present = false; bool usb_present;
}; };
#endif // PROXGUI_QT #endif // PROXGUI_QT