diff options
Diffstat (limited to 'parts/filecreate/fctemplateeditbase.ui.h')
-rw-r--r-- | parts/filecreate/fctemplateeditbase.ui.h | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/parts/filecreate/fctemplateeditbase.ui.h b/parts/filecreate/fctemplateeditbase.ui.h new file mode 100644 index 00000000..6f2b9223 --- /dev/null +++ b/parts/filecreate/fctemplateeditbase.ui.h @@ -0,0 +1,26 @@ +/*************************************************************************** + * Copyright (C) 2003 by Alexander Dymo * + * cloudtemple@mksat.net * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + ***************************************************************************/ + +/**************************************************************************** +** ui.h extension file, included from the uic-generated form implementation. +** +** If you wish to add, delete or rename functions or slots use +** Qt Designer which will update this file, preserving your code. Create an +** init() function in place of a constructor, and a destroy() function in +** place of a destructor. +*****************************************************************************/ + +#include <qvalidator.h> +#include <qregexp.h> + +void FCTemplateEditBase::init() +{ + templatename_edit->setValidator(new QRegExpValidator(QRegExp("^\\S*$"), this)); +} |