From: <le...@us...> - 2007-01-08 16:24:51
|
Revision: 127 http://svn.sourceforge.net/qcell/?rev=127&view=rev Author: lessm Date: 2007-01-08 08:24:46 -0800 (Mon, 08 Jan 2007) Log Message: ----------- - interfaces.h changed Modified Paths: -------------- trunk/qcell/baseheaders/interfaces.h trunk/qcell/visgui/MainWindow.cpp Modified: trunk/qcell/baseheaders/interfaces.h =================================================================== --- trunk/qcell/baseheaders/interfaces.h 2007-01-08 16:11:15 UTC (rev 126) +++ trunk/qcell/baseheaders/interfaces.h 2007-01-08 16:24:46 UTC (rev 127) @@ -28,7 +28,7 @@ * * @return A list of types supported by the parser */ - // virtual QStringList parserTypes() = 0; + virtual QStringList parserTypes() = 0; /** * @brief File types the plugin is able to parse * @@ -36,7 +36,7 @@ * * @return A list of types(extensions) of files types parsed by the plugin */ - // virtual QStringList fileTypes(const QString type) = 0; + virtual QStringList fileTypes(const QString type) = 0; /** * @brief The main parsing function Modified: trunk/qcell/visgui/MainWindow.cpp =================================================================== --- trunk/qcell/visgui/MainWindow.cpp 2007-01-08 16:11:15 UTC (rev 126) +++ trunk/qcell/visgui/MainWindow.cpp 2007-01-08 16:24:46 UTC (rev 127) @@ -12,7 +12,7 @@ { // GUI setup - earlies possible to show the user, that we're in buisness setupUi(this); - sw = new simulationWindow(this); + sw = new simulationWindow(this); QLayoutItem* tmp = centralWidget()->layout()->takeAt(0); centralWidget()->layout()->addWidget(sw); centralWidget()->layout()->addItem(tmp); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |