summaryrefslogtreecommitdiff
path: root/client/widgets/combobox.cc
diff options
context:
space:
mode:
authorsenator <senator>2007-08-22 10:23:33 +0000
committersenator <senator>2007-08-22 10:23:33 +0000
commit47750e70ba9171c10e32a1033b68ae2b614799fa (patch)
tree5b799493a9d2941ba26e540570a4121b764b950a /client/widgets/combobox.cc
parent50496c06eebb902d75e13667da0d87c9f454424a (diff)
name have moved to widget in all classes. combobox is a dummy so far
Diffstat (limited to 'client/widgets/combobox.cc')
-rw-r--r--client/widgets/combobox.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/client/widgets/combobox.cc b/client/widgets/combobox.cc
index 6a4d8df..5499d09 100644
--- a/client/widgets/combobox.cc
+++ b/client/widgets/combobox.cc
@@ -26,8 +26,10 @@
*/
#include "combobox.h"
-ComboBox::ComboBox(QWidget *parent) : QComboBox(parent)
+ComboBox::ComboBox(QDomNode node)
+ : QComboBox(), Widget(node)
{
+ QDomElement elem = node.toElement();
}
QString ComboBox::getValue()