summaryrefslogtreecommitdiff
path: root/client/widgets/frame.cc
diff options
context:
space:
mode:
Diffstat (limited to 'client/widgets/frame.cc')
-rw-r--r--client/widgets/frame.cc18
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();