diff options
author | senator <senator> | 2008-03-24 13:33:35 +0000 |
---|---|---|
committer | senator <senator> | 2008-03-24 13:33:35 +0000 |
commit | 917aea688614bd29568f7eb37efe8cbd2620b25c (patch) | |
tree | 568937b1a05890f5780500e5ae0696bd55cb1809 /client/macro.cc | |
parent | 2e87c4608a9fb888fd7669756d8cb457ac305f71 (diff) |
Fixed isValid for combobox and radiobuttons
Diffstat (limited to 'client/macro.cc')
-rw-r--r-- | client/macro.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/client/macro.cc b/client/macro.cc index 5e3b83d..3beb93d 100644 --- a/client/macro.cc +++ b/client/macro.cc @@ -67,10 +67,11 @@ void create_macro(QString name) } // Initiate the macro builder with the xml document - Builder *builder = new Builder(&xml_doc); + new Builder(&xml_doc); + //Builder *builder = new Builder(&xml_doc); } -bool MyEventHandler::eventFilter( QObject *o, QEvent *e ) +bool MyEventHandler::eventFilter( QObject *, QEvent *e ) { if ( e->type() == MY_EVENT_ID ) { |