[Uml-devel] KDE/kdesdk/umbrello/umbrello

Oliver Kellogg okellogg at users.sourceforge.net
Fri Aug 31 15:10:30 UTC 2007


SVN commit 706927 by okellogg:

fix typos (EBN Krazy #22)


 M  +2 -2      codeclassfield.h  
 M  +3 -3      codeclassfielddeclarationblock.cpp  
 M  +1 -1      codegenerator.cpp  
 M  +1 -1      codegenerators/classifierinfo.cpp  
 M  +1 -1      codegenerators/classifierinfo.h  
 M  +1 -1      codegenerators/cppheadercodedocument.h  
 M  +1 -1      codegenerators/cppsourcecodeoperation.cpp  
 M  +1 -1      codegenerators/rubycodeoperation.cpp  
 M  +1 -1      codegenerators/simplecodegenerator.cpp  
 M  +1 -1      codegenerators/simplecodegenerator.h  
 M  +1 -1      codegenerators/xmlschemawriter.h  
 M  +3 -3      dialogs/diagramprintpage.h  
 M  +1 -1      docgenerators/docbookgenerator.h  
 M  +1 -1      docgenerators/xhtmlgenerator.h  
 M  +3 -3      notewidgetcontroller.h  
 M  +4 -4      objectwidgetcontroller.h  
 M  +1 -1      textblock.cpp  
 M  +1 -1      toolbarstateother.h  
 M  +1 -1      umbrello.kcfg  
 M  +1 -1      umlview.cpp  


--- trunk/KDE/kdesdk/umbrello/umbrello/codeclassfield.h #706926:706927
@@ -156,8 +156,8 @@
      */
     virtual void loadFromXMI ( QDomElement & root );
 
-    /** Force the syncronization of the content (methods and declarations)
-         *  of this class field.
+    /** Force the synchronization of the content (methods and declarations)
+     *  of this class field.
      */
     virtual void synchronize ();
 
--- trunk/KDE/kdesdk/umbrello/umbrello/codeclassfielddeclarationblock.cpp #706926:706927
@@ -13,7 +13,7 @@
  *      Date   : Fri Jul 25 2003
  */
 
-/** basicially a class to allow for syncronization of the contents based on the
+/** basicially a class to allow for synchronization of the contents based on the
  *  values of the parentClassField's parentObject
  */
 #include "codeclassfielddeclarationblock.h"
@@ -65,7 +65,7 @@
 //
 
 // this type of textblock is special
-// we DONT release it when resetTextBlocks is
+// we DON'T release it when resetTextBlocks is
 // called because we re-use it over and over
 // until the codeclassfield is released.
 void CodeClassFieldDeclarationBlock::release () {
@@ -139,7 +139,7 @@
 
 void CodeClassFieldDeclarationBlock::syncToParent () {
 
-    // for role-based accessors, we DONT write ourselves out when
+    // for role-based accessors, we DON'T write ourselves out when
     // the name of the role is not defined.
     if(!(getParentClassField()->parentIsAttribute()))
     {
--- trunk/KDE/kdesdk/umbrello/umbrello/codegenerator.cpp #706926:706927
@@ -177,7 +177,7 @@
 
 void CodeGenerator::loadFromXMI (QDomElement & qElement ) {
 
-    // don't do anything for simple (compatability) code generators
+    // don't do anything for simple (compatibility) code generators
     if(dynamic_cast<SimpleCodeGenerator*>(this))
         return;
 
--- trunk/KDE/kdesdk/umbrello/umbrello/codegenerators/classifierinfo.cpp #706926:706927
@@ -124,7 +124,7 @@
 
     for (UMLAssociationListIt alit(*list); alit.hasNext(); ) {
         UMLAssociation* a = alit.next();
-        // DONT accept a classifier IF the association role is empty, by
+        // DON'T accept a classifier IF the association role is empty, by
         // convention, that means to ignore the classifier on that end of
         // the association.
         // We also ignore classifiers which are the same as the current one
--- trunk/KDE/kdesdk/umbrello/umbrello/codegenerators/classifierinfo.h #706926:706927
@@ -116,7 +116,7 @@
     /**
      * Utility method called by "get*ChildClassfierList()" methods. It basically
      * finds all the classifiers named in each association in the given association list
-     * which arent the current one. Usefull for finding which classifiers are "owned" by the
+     * which aren't the current one. Useful for finding which classifiers are "owned" by the
      * current one via declared associations such as in aggregations/compositions.
      */
     UMLClassifierList findAssocClassifierObjsInRoles (UMLAssociationList * list);
--- trunk/KDE/kdesdk/umbrello/umbrello/codegenerators/cppheadercodedocument.h #706926:706927
@@ -5,7 +5,7 @@
  *   the Free Software Foundation; either version 2 of the License, or     *
  *   (at your option) any later version.                                   *
  *                                                                         *
- *   copyright (C) 2004-2006                                               *
+ *   copyright (C) 2004-2007                                               *
  *   Umbrello UML Modeller Authors <uml-devel at uml.sf.net>                  *
  ***************************************************************************/
 
--- trunk/KDE/kdesdk/umbrello/umbrello/codegenerators/cppsourcecodeoperation.cpp #706926:706927
@@ -108,7 +108,7 @@
 
 // we basically just want to know whether or not to print out
 // the body of the operation.
-// In C++ if the operations are inline, then we DONT print out
+// In C++ if the operations are inline, then we DON'T print out
 // the body text.
 void CPPSourceCodeOperation::updateContent( )
 {
--- trunk/KDE/kdesdk/umbrello/umbrello/codegenerators/rubycodeoperation.cpp #706926:706927
@@ -204,7 +204,7 @@
         getComment()->setText(comment);
     }
 
-    // In Java, for interfaces..we DONT write out non-public
+    // In Java, for interfaces..we DON'T write out non-public
     // method declarations. And for Ruby modules?
     if (isInterface) {
         UMLOperation * o = getParentOperation();
--- trunk/KDE/kdesdk/umbrello/umbrello/codegenerators/simplecodegenerator.cpp #706926:706927
@@ -272,7 +272,7 @@
     syncCodeToDocument();
 }
 
-// a little method to provide some compatability between
+// a little method to provide some compatibility between
 // the newer codegenpolicy object and the older class fields.
 void SimpleCodeGenerator::syncCodeToDocument() {
 
--- trunk/KDE/kdesdk/umbrello/umbrello/codegenerators/simplecodegenerator.h #706926:706927
@@ -71,7 +71,7 @@
 
 protected:
 
-    // compatability methods..
+    // compatibility methods..
     QString findFileName(UMLPackage* concept, const QString &ext);
     QString overwritableName(UMLPackage* concept, const QString &name, const QString &ext);
     bool hasDefaultValueAttr(UMLClassifier *c);
--- trunk/KDE/kdesdk/umbrello/umbrello/codegenerators/xmlschemawriter.h #706926:706927
@@ -178,7 +178,7 @@
     QString fixTypeName(const QString& string);
 
     /**
-     * check that initial values of strings DONT have quotes around them
+     * check that initial values of strings DON'T have quotes around them
      * (we get double quoting then!!
      */
     QString fixInitialStringDeclValue( QString value, const QString &type);
--- trunk/KDE/kdesdk/umbrello/umbrello/dialogs/diagramprintpage.h #706926:706927
@@ -53,18 +53,18 @@
     ~DiagramPrintPage();
 
     /**
-     * Overriden method. It builds a list with the diagram name and the diagram
+     * Overridden method. It builds a list with the diagram name and the diagram
      * IDs.
      */
     void getOptions(QMap<QString,QString>& opts, bool /* incldef=false */);
 
     /**
-     * Overriden method.
+     * Overridden method.
      */
     void setOptions( const QMap<QString,QString>& /*opts*/ );
 
     /**
-     * Overriden method.
+     * Overridden method.
      */
     bool isValid( QString& msg );
 
--- trunk/KDE/kdesdk/umbrello/umbrello/docgenerators/docbookgenerator.h #706926:706927
@@ -71,7 +71,7 @@
 
   signals:
  
-    /** Emited when the documentation generation is finished 
+    /** Emitted when the documentation generation is finished 
      * @param status true if success else false
      */
     void finished(bool status);
--- trunk/KDE/kdesdk/umbrello/umbrello/docgenerators/xhtmlgenerator.h #706926:706927
@@ -73,7 +73,7 @@
 
   signals:
 
-    /** Emited when the documentation generation is finished 
+    /** Emitted when the documentation generation is finished 
      * @param status true if success else false
      */
     void finished(bool status);
--- trunk/KDE/kdesdk/umbrello/umbrello/notewidgetcontroller.h #706926:706927
@@ -42,7 +42,7 @@
     virtual ~NoteWidgetController();
 
     /**
-     * Overriden from UMLWidgetController.
+     * Overridden from UMLWidgetController.
      * Handles a mouse move event.
      * Executes base code and then sets the geometry of the editor.
      *
@@ -51,7 +51,7 @@
     virtual void mouseMoveEvent(QMouseEvent* me);
 
     /**
-     * Overriden from UMLWidgetController.
+     * Overridden from UMLWidgetController.
      * Handles a mouse release event.
      * Executes base code and then draws the text in the note.
      *
@@ -62,7 +62,7 @@
 protected:
 
     /**
-     * Overriden from UMLWidgetController.
+     * Overridden from UMLWidgetController.
      * Executes the action for double click in the widget.
      * Shows the dialog to change the text of the note.
      *
--- trunk/KDE/kdesdk/umbrello/umbrello/objectwidgetcontroller.h #706926:706927
@@ -48,7 +48,7 @@
 protected:
 
     /**
-     * Overriden from UMLWidgetController.
+     * Overridden from UMLWidgetController.
      * Returns the cursor to be shown when resizing the widget.
      * The cursor shown is KCursor::sizeHorCursor().
      *
@@ -57,7 +57,7 @@
     virtual QCursor getResizeCursor();
 
     /**
-     * Overriden from UMLWidgetController.
+     * Overridden from UMLWidgetController.
      * Resizes the width of the object widget.
      * Object widgets can only be resized horizontally, so height isn't modified.
      *
@@ -77,7 +77,7 @@
     virtual void mouseMoveEvent(QMouseEvent* me);
 
     /**
-     * Overriden from UMLWidgetController.
+     * Overridden from UMLWidgetController.
      * Moves the widget to a new position using the difference between the
      * current position and the new position.
      * Y position is ignored, and widget is only moved along X axis.
@@ -98,7 +98,7 @@
     void moveDestructionBy (int diffY);
 
     /**
-     * Overriden from UMLWidgetController.
+     * Overridden from UMLWidgetController.
      * Modifies the value of the diffX and diffY variables used to move the widgets.
      * All the widgets are constrained to be moved only in X axis (diffY is set to 0).
      *
--- trunk/KDE/kdesdk/umbrello/umbrello/textblock.cpp #706926:706927
@@ -255,7 +255,7 @@
 void TextBlock::setAttributesFromObject(TextBlock * obj)
 {
 
-    // DONT set tag here.
+    // DON'T set tag here.
     setIndentationLevel(obj->getIndentationLevel());
     setText(obj->getText());
     setWriteOutText(obj->getWriteOutText());
--- trunk/KDE/kdesdk/umbrello/umbrello/toolbarstateother.h #706926:706927
@@ -42,7 +42,7 @@
 
     /**
      * Sets nothing.
-     * Overriden from base class to ignore associations and widgets and treat
+     * Overridden from base class to ignore associations and widgets and treat
      * them as empty spaces to create widgets on it.
      */
     virtual void setCurrentElement();
--- trunk/KDE/kdesdk/umbrello/umbrello/umbrello.kcfg #706926:706927
@@ -260,7 +260,7 @@
        </entry>
        <entry name="defaultAssocFieldScope" type="Enum">
          <label>Default Association Field Scope</label>
-         <whatisthis>Sets the default Associatin field scope</whatisthis>
+         <whatisthis>Sets the default Association field scope</whatisthis>
          <choices name="CodeGenerationPolicy::ScopePolicy" />
          <default>CodeGenerationPolicy::FromParent</default>
        </entry>
--- trunk/KDE/kdesdk/umbrello/umbrello/umlview.cpp #706926:706927
@@ -3089,7 +3089,7 @@
     foreach ( UMLWidget *widget , m_WidgetList ) {
         // Having an exception is bad I know, but gotta work with
         // system we are given.
-        // We DONT want to record any text widgets which are belonging
+        // We DON'T want to record any text widgets which are belonging
         // to associations as they are recorded later in the "associations"
         // section when each owning association is dumped. -b.t.
         if ((widget->getBaseType() != wt_Text && widget->getBaseType() != wt_FloatingDashLine ) ||




More information about the umbrello-devel mailing list