From f2cf7e782a56a856b9386a04a7ba94212412a333 Mon Sep 17 00:00:00 2001 From: "Richard J. Moore" Date: Wed, 5 Sep 2007 22:39:03 +0000 Subject: [PATCH] - Since rectangle is disabled elsewhere svn path=/trunk/KDE/kdebase/workspace/libs/plasma/; revision=708888 --- uiloader.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/uiloader.cpp b/uiloader.cpp index 9c1c1a279..4e9d3571c 100644 --- a/uiloader.cpp +++ b/uiloader.cpp @@ -29,7 +29,7 @@ #include "widgets/label.h" #include "widgets/pushbutton.h" #include "widgets/radiobutton.h" -#include "widgets/rectangle.h" +//#include "widgets/rectangle.h" #include "widgets/hboxlayout.h" #include "widgets/vboxlayout.h" @@ -93,9 +93,9 @@ Widget *UiLoader::createWidget( const QString &className, Widget *parent ) else if ( className == QString("RadioButton") ) { return new RadioButton( parent ); } - else if ( className == QString("Rectangle") ) { + //else if ( className == QString("Rectangle") ) { // return new Rectangle( parent ); // Constructor here requires a Widget - } + //} return 0; }