]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/msw/ole/automtn.h
Move code removing "-psn_xxx" command line arguments to common code.
[wxWidgets.git] / interface / wx / msw / ole / automtn.h
index cfa2cb7144c6d8398a062add4984a379190966cb..ec0ec35efc4261d39c714ed5871f6c27d3f6f503 100644 (file)
@@ -2,7 +2,6 @@
 // Name:        msw/ole/automtn.h
 // Purpose:     interface of wxAutomationObject
 // Author:      wxWidgets team
-// RCS-ID:      $Id$
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
@@ -254,7 +253,7 @@ public:
         for ( unsigned col = 0; col < colCount; col++ )
         {
             indices[1] = col;
-            if ( !safeArray.SetElement(indices, wxString::Format("R%ud C%ud", i+1, j+1)) )(
+            if ( !safeArray.SetElement(indices, wxString::Format("R%u C%u", row+1, col+1)) )
                return false;
         }
     }
@@ -314,8 +313,8 @@ public:
     void SetValue(SAFEARRAY* value);
 
     /**
-        Returns true if @a data is of wxVariantDataErrorCode type
-        and contains the same SCODE value.
+        Returns true if @a data is of wxVariantDataSafeArray type
+        and contains the same SAFEARRAY* value.
     */
     virtual bool Eq(wxVariantData& data) const;
 
@@ -323,7 +322,7 @@ public:
         Fills the provided string with the textual representation of this
         object.
 
-        The error code is just a number, so it's output as such.
+        Only the address of SAFEARRAY pointer is output.
     */
     virtual bool Write(wxString& str) const;