QDate: remove some useless default case labels

They're pure whitespace, since in each case there is a fallback
after the switch, anyway, and their presence prevents compiler
warnings about unhandled enumeration values in switch statements,
which is nice-to-have, when adding to the enum, eventually.

No change in executable code size.

Change-Id: I77aecaeff990601f957ec9ee827eff5ead25aaa1
Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
bb10
Marc Mutz 2015-01-22 14:57:32 +01:00
parent c885efb3cd
commit 0b77e1b611
1 changed files with 0 additions and 8 deletions

View File

@ -636,8 +636,6 @@ QString QDate::shortMonthName(int month, QDate::MonthNameType type)
return QLocale::system().monthName(month, QLocale::ShortFormat);
case QDate::StandaloneFormat:
return QLocale::system().standaloneMonthName(month, QLocale::ShortFormat);
default:
break;
}
return QString();
}
@ -683,8 +681,6 @@ QString QDate::longMonthName(int month, MonthNameType type)
return QLocale::system().monthName(month, QLocale::LongFormat);
case QDate::StandaloneFormat:
return QLocale::system().standaloneMonthName(month, QLocale::LongFormat);
default:
break;
}
return QString();
}
@ -725,8 +721,6 @@ QString QDate::shortDayName(int weekday, MonthNameType type)
return QLocale::system().dayName(weekday, QLocale::ShortFormat);
case QDate::StandaloneFormat:
return QLocale::system().standaloneDayName(weekday, QLocale::ShortFormat);
default:
break;
}
return QString();
}
@ -767,8 +761,6 @@ QString QDate::longDayName(int weekday, MonthNameType type)
return QLocale::system().dayName(weekday, QLocale::LongFormat);
case QDate::StandaloneFormat:
return QLocale::system().standaloneDayName(weekday, QLocale::LongFormat);
default:
break;
}
return QLocale::system().dayName(weekday, QLocale::LongFormat);
}