Skip to content

Commit

Permalink
Change ShowNotificationX(...) default argument value to null string
Browse files Browse the repository at this point in the history
  • Loading branch information
jyavenard committed Jul 8, 2013
1 parent 58c6b14 commit cf093aa
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions mythtv/libs/libmythui/mythuinotificationcenter.h
Expand Up @@ -144,14 +144,14 @@ private slots:
* convenience utility to display error message as notification
*/
MUI_PUBLIC void ShowNotificationError(const QString &msg,
const QString &from = "",
const QString &detail = "",
const QString &from = QString(),
const QString &detail = QString(),
const PNMask priority = MythNotification::kDefault,
const VNMask visibility = MythNotification::kAll);

MUI_PUBLIC void ShowNotification(const QString &msg,
const QString &from = "",
const QString &detail = "",
const QString &from = QString(),
const QString &detail = QString(),
const PNMask priority = MythNotification::kDefault,
const VNMask visibility = MythNotification::kAll);

Expand Down

0 comments on commit cf093aa

Please sign in to comment.