Yay! QuasselTopia has a working core connection dialog now! Nothing else yet, GUI...
[quassel.git] / src / qtopia / example.cpp
diff --git a/src/qtopia/example.cpp b/src/qtopia/example.cpp
deleted file mode 100644 (file)
index b6756a3..0000000
+++ /dev/null
@@ -1,52 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2000-$THISYEAR$ $TROLLTECH$. All rights reserved.
-**
-** This file is part of the $MODULE$ of the Qtopia Toolkit.
-**
-** $TROLLTECH_DUAL_LICENSE$
-**
-** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
-** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
-**
-****************************************************************************/
-
-#include "example.h"
-#include <qpushbutton.h>
-
-ExampleBase::ExampleBase( QWidget *parent, Qt::WFlags f )
-    : QWidget( parent, f )
-{
-    setupUi( this );
-}
-
-ExampleBase::~ExampleBase()
-{
-}
-
-/* 
- *  Constructs a Example which is a child of 'parent', with the 
- *  name 'name' and widget flags set to 'f' 
- */
-Example::Example( QWidget *parent, Qt::WFlags f )
-    : ExampleBase( parent, f )
-{
-    connect(quit, SIGNAL(clicked()), this, SLOT(goodBye()));
-}
-
-/*  
- *  Destroys the object and frees any allocated resources
- */
-Example::~Example()
-{
-    // no need to delete child widgets, Qt does it all for us
-}
-
-/*
- *  A simple slot... not very interesting.
- */
-void Example::goodBye()
-{
-    close();
-}
-