Skip to content

Commit 1269b72

Browse files
committed
More cleanup after 0e84bfe.
Missed a no-longer necessary function argument. Silences a bunch of warnings.
1 parent 9bf9ec9 commit 1269b72

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

mythtv/libs/libmyth/mythwidgets.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1168,7 +1168,7 @@ void MythRemoteLineEdit::backspace()
11681168
}
11691169

11701170
MythPushButton::MythPushButton(const QString &ontext, const QString &offtext,
1171-
QWidget *parent, bool isOn, bool aa)
1171+
QWidget *parent, bool isOn)
11721172
: QPushButton(ontext, parent)
11731173
{
11741174
onText = ontext;

mythtv/libs/libmyth/mythwidgets.h

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -282,23 +282,22 @@ class MPUBLIC MythPushButton : public QPushButton
282282
Q_OBJECT
283283

284284
public:
285-
MythPushButton(QWidget *parent, const char *name = "MythPushButton",
286-
bool aa = false)
285+
MythPushButton(QWidget *parent, const char *name = "MythPushButton")
287286
: QPushButton(parent)
288287
{
289288
setObjectName(name);
290289
setCheckable(false);
291290
}
292291

293-
MythPushButton(const QString &text, QWidget *parent, bool aa = false)
292+
MythPushButton(const QString &text, QWidget *parent)
294293
: QPushButton(text, parent)
295294
{
296295
setObjectName("MythPushButton");
297296
setCheckable(false);
298297
}
299298

300299
MythPushButton(const QString &ontext, const QString &offtext,
301-
QWidget *parent, bool isOn = true, bool aa = false);
300+
QWidget *parent, bool isOn = true);
302301

303302
void setHelpText(const QString &help);
304303

mythtv/libs/libmythbase/mythversion.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
/// Update this whenever the plug-in API changes.
1313
/// Including changes in the libmythbase, libmyth, libmythtv, libmythav* and
1414
/// libmythui class methods used by plug-ins.
15-
#define MYTH_BINARY_VERSION "0.25.20110909-1"
15+
#define MYTH_BINARY_VERSION "0.25.20110910-1"
1616

1717
/** \brief Increment this whenever the MythTV network protocol changes.
1818
*

0 commit comments

Comments
 (0)