MODIFIED: #1471 Oups, forgot these warning messages...

--HG--
branch : gsoc2012-gui-editor
This commit is contained in:
dfighter1985 2012-11-20 04:54:09 +01:00
parent c87cc27ae3
commit 6e1254b612

View file

@ -16,6 +16,7 @@
#include "new_widget_widget.h" #include "new_widget_widget.h"
#include "widget_info_tree.h" #include "widget_info_tree.h"
#include <qmessagebox.h>
namespace GUIEditor namespace GUIEditor
{ {
@ -50,11 +51,21 @@ namespace GUIEditor
{ {
if( !checkNameField() ) if( !checkNameField() )
{ {
QMessageBox::warning( this,
tr( "Adding a new widget" ),
tr( "The new widget's name is invalid!" ),
QMessageBox::Ok
);
return; return;
} }
if( !checkNameDuplicate() ) if( !checkNameDuplicate() )
{ {
QMessageBox::warning( this,
tr( "Adding a new widget" ),
tr( "That widget name already exists!" ),
QMessageBox::Ok
);
return; return;
} }