Replace MessageBox Dialog with inline MessageWidget in

EditWidget and in UnlockDatabaseWidget.
Add missing method to show Information Message.
This commit is contained in:
Pedro Alves
2015-01-20 01:27:56 +00:00
committed by Janek Bevendorff
parent 8fa070f01c
commit c2826bb1af
5 changed files with 54 additions and 13 deletions

View File

@@ -33,6 +33,11 @@ void MessageWidget::showMessageWarning(const QString& text)
showMessage(text, MessageType::Warning);
}
void MessageWidget::showMessageInformation(const QString& text)
{
showMessage(text, MessageType::Information);
}
void MessageWidget::showMessagePositive(const QString& text)
{
showMessage(text, MessageType::Positive);