[Uml-devel] branches/work/soc-umbrello/umbrello/widgets
Andi Fischer
andi.fischer at hispeed.ch
Tue Apr 10 20:59:38 UTC 2012
SVN commit 1288882 by fischer:
Differences to trunk reduced.
M +16 -0 activitywidget.cpp
M +2 -8 activitywidget.h
--- branches/work/soc-umbrello/umbrello/widgets/activitywidget.cpp #1288881:1288882
@@ -75,6 +75,14 @@
}
/**
+ * This method get the name of the preText attribute.
+ */
+QString ActivityWidget::preconditionText() const
+{
+ return m_preconditionText;
+}
+
+/**
* This method set the name of the preText attribute
*/
void ActivityWidget::setPreconditionText(const QString& aPreText)
@@ -84,6 +92,14 @@
}
/**
+ * This method get the name of the postText attribute.
+ */
+QString ActivityWidget::postconditionText() const
+{
+ return m_postconditionText;
+}
+
+/**
* This method set the name of the postText attribute
*/
void ActivityWidget::setPostconditionText(const QString& aPostText)
--- branches/work/soc-umbrello/umbrello/widgets/activitywidget.h #1288881:1288882
@@ -53,16 +53,10 @@
QString activityTypeStr() const;
void setActivityType( ActivityType activityType );
- /// This method get the name of the preText attribute
- QString preconditionText() const {
- return m_preconditionText;
- }
+ QString preconditionText() const;
void setPreconditionText(const QString&);
- /// This method get the name of the postText attribute
- QString postconditionText() const {
- return m_postconditionText;
- }
+ QString postconditionText() const;
void setPostconditionText(const QString&);
virtual void showPropertiesDialog();
More information about the umbrello-devel
mailing list