Fixed warning about missing return in qmessagebox.cpp

bb10
Samuel Rødal 2011-06-06 15:50:40 +02:00
parent 0bb276863f
commit 481067453f
1 changed files with 2 additions and 0 deletions

View File

@ -1855,6 +1855,8 @@ static QMessageBox::StandardButton newButton(int button)
default:
return QMessageBox::NoButton;
}
#else
return QMessageBox::NoButton;
#endif
}