QTfrontend/about.cpp
changeset 221 0f451dae4251
parent 187 96c3154efee5
child 235 28903e620258
--- a/QTfrontend/about.cpp	Sun Oct 29 15:30:32 2006 +0000
+++ b/QTfrontend/about.cpp	Sun Oct 29 22:39:51 2006 +0000
@@ -16,10 +16,15 @@
  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
  */
 
+#include <QGridLayout>
+#include <QSvgWidget>
 #include "about.h"
 
 About::About(QWidget * parent) :
   QWidget(parent)
 {
-
+	QGridLayout *mainLayout = new QGridLayout(this);
+	QSvgWidget *hedgehog = new QSvgWidget(":/res/Hedgehog.svg", this);
+	hedgehog->setFixedSize(300, 329);
+	mainLayout->addWidget(hedgehog);
 }