diff options
author | senator <senator> | 2007-10-11 07:49:03 +0000 |
---|---|---|
committer | senator <senator> | 2007-10-11 07:49:03 +0000 |
commit | a7ce3d715138fffe0817855468a38f6ca46b7c60 (patch) | |
tree | b0f776f6e0ad5ec893a9e302366ff4203834a832 /client/widgets/frame.cc | |
parent | 4060888474e49cc0716cdd59d4d1a73c06c5b3bc (diff) |
Updated all widgets with better width height control
Diffstat (limited to 'client/widgets/frame.cc')
-rw-r--r-- | client/widgets/frame.cc | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/client/widgets/frame.cc b/client/widgets/frame.cc index bc72a2a..0edf1fa 100644 --- a/client/widgets/frame.cc +++ b/client/widgets/frame.cc @@ -33,24 +33,6 @@ Frame::Frame(QDomNode node) { QDomElement elem = node.toElement(); - /* - if(elem.hasAttribute("caption")) { - setTitle(elem.attribute("caption")); - } else { - setTitle(elem.attribute("")); - } - */ - /* - if(elem.hasAttribute("border")) { - if(elem.attribute("border") == "true") { - setFlat(false); - } else { - setFlat(true); - } - } else { - setFlat(true); - } - */ if(elem.hasAttribute("layout")) { if(elem.attribute("layout") == "hbox") { QHBoxLayout *layout = new QHBoxLayout(); |