foreach++, globals--, const& params++, new--, uninit mem usage--, mem leaks-- (still a lot to go)

This commit is contained in:
Mathias Panzenböck
2014-02-16 00:37:54 +01:00
parent 683fa64f01
commit 904a843b93
17 changed files with 213 additions and 208 deletions

View File

@ -4,6 +4,7 @@
//parts for the widget
//Added by qt3to4:
#include <QList>
#include <linux/joystick.h>
#include "axisw.h"
//this all relates to a JoyPad
@ -40,7 +41,7 @@ class JoyPadWidget : public QWidget {
//(either on or off) The int is the index of this widget so that this
//signal can be directly connected to FlashRadioArray's flash(int)
void flashed(int);
protected:
private:
//the joypad this is linked to
JoyPad* joypad;
//the index of this widget IN THE WIDGET STACK! This is unique from
@ -53,10 +54,10 @@ class JoyPadWidget : public QWidget {
int flashcount;
//the parts of the dialog
QGridLayout *LMain;
AxisWidget **Axes;
ButtonWidget **Buttons;
QPushButton *BClear, *BAll;
QGridLayout *layoutMain;
QList<AxisWidget*> axes;
QList<ButtonWidget*> buttons;
QPushButton *btnClear, *btnAll;
//the quickset window, when we create it
QuickSet* quickset;