[Ktutorial-commits] SF.net SVN: ktutorial:[129] trunk/ktutorial/ktutorial-editor/src/view
Status: Alpha
Brought to you by:
danxuliu
From: <dan...@us...> - 2010-03-09 04:53:40
|
Revision: 129 http://ktutorial.svn.sourceforge.net/ktutorial/?rev=129&view=rev Author: danxuliu Date: 2010-03-09 04:53:34 +0000 (Tue, 09 Mar 2010) Log Message: ----------- Fix wrong class/object name for the TutorialInformationWidget Designer generated class. Modified Paths: -------------- trunk/ktutorial/ktutorial-editor/src/view/TutorialInformationWidget.cpp trunk/ktutorial/ktutorial-editor/src/view/TutorialInformationWidget.h trunk/ktutorial/ktutorial-editor/src/view/TutorialInformationWidget.ui Modified: trunk/ktutorial/ktutorial-editor/src/view/TutorialInformationWidget.cpp =================================================================== --- trunk/ktutorial/ktutorial-editor/src/view/TutorialInformationWidget.cpp 2010-03-09 04:33:47 UTC (rev 128) +++ trunk/ktutorial/ktutorial-editor/src/view/TutorialInformationWidget.cpp 2010-03-09 04:53:34 UTC (rev 129) @@ -27,7 +27,7 @@ QWidget* parent): EditionWidget(parent), mTutorial(tutorial) { - ui = new Ui::TutorialInformationWidgetUi(); + ui = new Ui::TutorialInformationWidget(); ui->setupUi(this); ui->nameLineEdit->setText(tutorial->name()); Modified: trunk/ktutorial/ktutorial-editor/src/view/TutorialInformationWidget.h =================================================================== --- trunk/ktutorial/ktutorial-editor/src/view/TutorialInformationWidget.h 2010-03-09 04:33:47 UTC (rev 128) +++ trunk/ktutorial/ktutorial-editor/src/view/TutorialInformationWidget.h 2010-03-09 04:53:34 UTC (rev 129) @@ -24,7 +24,7 @@ class Tutorial; namespace Ui { -class TutorialInformationWidgetUi; +class TutorialInformationWidget; } /** @@ -62,7 +62,7 @@ /** * The Ui Designer generated class. */ - Ui::TutorialInformationWidgetUi* ui; + Ui::TutorialInformationWidget* ui; }; Modified: trunk/ktutorial/ktutorial-editor/src/view/TutorialInformationWidget.ui =================================================================== --- trunk/ktutorial/ktutorial-editor/src/view/TutorialInformationWidget.ui 2010-03-09 04:33:47 UTC (rev 128) +++ trunk/ktutorial/ktutorial-editor/src/view/TutorialInformationWidget.ui 2010-03-09 04:53:34 UTC (rev 129) @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <ui version="4.0"> - <class>TutorialInformationWidgetUi</class> - <widget class="QWidget" name="TutorialInformationWidgetUi"> + <class>TutorialInformationWidget</class> + <widget class="QWidget" name="TutorialInformationWidget"> <property name="geometry"> <rect> <x>0</x> @@ -16,7 +16,7 @@ <property name="whatsThis"> <string comment="@info:whatsthis"><para>Set the name and description of the tutorial.</para><para>The name and the description are shown in the dialog where the tutorial to be started is selected.</para></string> </property> - <layout class="QVBoxLayout" name="tutorialInformationWidgetUiLayout"> + <layout class="QVBoxLayout" name="tutorialInformationWidgetLayout"> <item> <widget class="QGroupBox" name="tutorialInformationGroupBox"> <property name="title"> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |