Browse Source

- reverted spelling fixes from r16094 because these headers are
automatically translated, and spelling fixes will make future
updates harder

git-svn-id: trunk@16113 -

Jonas Maebe 15 years ago
parent
commit
ff9ca6ee17

+ 1 - 1
packages/univint/src/AppleEvents.pas

@@ -552,7 +552,7 @@ procedure AEDisposeRemoteProcessResolver( ref: AERemoteProcessResolverRef ); ext
  *  
  *  Discussion:
  *    Returns a CFArrayRef containing CFDictionary objects containing
- *    information about processes running on a remote machine.  If the
+ *    information about processses running on a remote machine.  If the
  *    result array is NULL, the query failed and the error out
  *    parameter will contain information about the failure.  If the
  *    resolver had not been previously scheduled for execution, this

+ 1 - 1
packages/univint/src/AudioHardware.pas

@@ -1054,7 +1054,7 @@ const
     @constant       kAudioHardwarePropertyPlugInForBundleID
                         Using an AudioValueTranslation structure, this property translates the input
                         CFString containing a bundle ID into the AudioObjectID of the AudioPlugIn
-                        that corresponds to it. This property will return kAudioObjectUnknown if the
+                        that corresponds to it. This property will return kAudioObjectUnkown if the
                         given bundle ID doesn't match any AudioPlugIns.
     @constant       kAudioHardwarePropertyUserSessionIsActiveOrHeadless
                         A UInt32 where a value other than 0 indicates that the login session of the

+ 2 - 2
packages/univint/src/Authorization.pas

@@ -395,7 +395,7 @@ type AuthorizationEnvironmentPtr = ^AuthorizationEnvironment;
 		The reason for passing in this flag is to provide correct audit trail information and to avoid unnecessary user interaction.
 
     @param rights (input/optional) An AuthorizationItemSet containing rights for which authorization is being requested.  If none are specified the resulting AuthorizationRef will authorize nothing at all.
-    @param environment (input/optional) An AuthorizationItemSet containing environment state used when making the autorization decision.  See the AuthorizationEnvironment type for details.
+    @param environment (input/optional) An AuthorizationItemSet containing enviroment state used when making the autorization decision.  See the AuthorizationEnvironment type for details.
     @param flags (input) options specified by the AuthorizationFlags enum.  set all unused bits to zero to allow for future expansion.
     @param authorization (output optional) A pointer to an AuthorizationRef to be returned.  When the returned AuthorizationRef is no longer needed AuthorizationFree should be called to prevent anyone from using the aquired rights.  If NULL is specified no new rights are returned, but the system will attempt to authorize all the requested rights and return the appropriate status.
 
@@ -450,7 +450,7 @@ function AuthorizationFree( authorization: AuthorizationRef; flags: Authorizatio
 
     @param authorization (input) The authorization object on which this operation is performed.
     @param rights (input) A rights set (see AuthorizationCreate).
-    @param environment (input/optional) An AuthorizationItemSet containing environment state used when making the autorization decision.  See the AuthorizationEnvironment type for details.
+    @param environment (input/optional) An AuthorizationItemSet containing enviroment state used when making the autorization decision.  See the AuthorizationEnvironment type for details.
     @param flags (input) options specified by the AuthorizationFlags enum.  set all unused bits to zero to allow for future expansion.
     @param authorizedRights (output/optional) A pointer to a newly allocated AuthorizationInfoSet in which the authorized subset of rights are returned (authorizedRights should be deallocated by calling AuthorizationFreeItemSet() when it is no longer needed).  If NULL the only information returned is the status.  Note that if the kAuthorizationFlagPreAuthorize flag was specified rights that could not be preauthorized are returned in authorizedRights, but their flags contains the kAuthorizationFlagCanNotPreAuthorize bit.
 

+ 1 - 1
packages/univint/src/CFURL.pas

@@ -510,7 +510,7 @@ function CFURLCreateStringByReplacingPercentEscapesUsingEncoding( allocator: CFA
 { are not legal URL characters (based on RFC 2396), plus any characters }
 { in legalURLCharactersToBeEscaped, less any characters in }
 { charactersToLeaveUnescaped.  To simply correct any non-URL characters }
-{ in anotherwise correct URL string, do: }
+{ in an otherwise correct URL string, do: }
 
 { newString = CFURLCreateStringByAddingPercentEscapes(kCFAllocatorDefault, origString, NULL, NULL, kCFStringEncodingUTF8); }
 function CFURLCreateStringByAddingPercentEscapes( allocator: CFAllocatorRef; originalString: CFStringRef; charactersToLeaveUnescaped: CFStringRef; legalURLCharactersToBeEscaped: CFStringRef; encoding: CFStringEncoding ): CFStringRef; external name '_CFURLCreateStringByAddingPercentEscapes';

+ 1 - 1
packages/univint/src/CGImageDestination.pas

@@ -262,7 +262,7 @@ procedure CGImageDestinationAddImage( idst: CGImageDestinationRef; image: CGImag
 
 { Set the next image in the image destination `idst' to be the image at
  * `index' in the image source `isrc'.  The index is zero-based. The
- * properties of the source image can be added to or overridden by supplying
+ * properties of the source image can be added to or overriden by supplying
  * additional keys/values in `properties'.  If a key in `properties' has
  * the value kCFNull, the corresponding property in the destination will be
  * removed. }

+ 1 - 1
packages/univint/src/ColorSyncDeprecated.pas

@@ -3181,7 +3181,7 @@ function CMSetDeviceFactoryProfiles( deviceClass: CMDeviceClass; deviceID: CMDev
     @abstract    Returns all the device's factory profiles
     @discussion  This API allows the caller to retrieve the original profiles for a device.
                     These may differ from the profiles currently in use for that device in the
-                    case where factory profiles have been overridden with custom profiles.
+                    case where factory profiles have been overriden with custom profiles.
     @param       deviceClass    (in) Device class to query
     @param       deviceID       (in) Device id to query (can be cmDefaultDeviceID)
     @param       defaultProfID  (out) Returns id of default mode (optional)

+ 1 - 1
packages/univint/src/ImageCompression.pas

@@ -6380,7 +6380,7 @@ const
  *    performed (kQTPropertyClass_Visual /
  *    kQTVisualPropertyID_ApertureMode). When a movie is in clean,
  *    production or encoded pixels aperture mode, each track's
- *    dimensions are overridden by special dimensions for that mode. The
+ *    dimensions are overriden by special dimensions for that mode. The
  *    original track dimensions are preserved and can be restored by
  *    setting the movie into classic aperture mode. Aperture modes are
  *    not saved in movies. 

+ 2 - 2
packages/univint/src/Movies.pas

@@ -8785,7 +8785,7 @@ const
 type
 	QTParamComponentPropertyRecord = record
 		component: ComponentInstance;              { component to call for get/set properties}
-		defaultClass: OSType;           { default property class if not overridden by a given parameter}
+		defaultClass: OSType;           { default property class if not overriden by a given parameter}
 	end;
 type
 	QTParamSampleTimeRecordPtr = ^QTParamSampleTimeRecord;
@@ -10568,7 +10568,7 @@ const
    * performed. The values for this property have the prefix
    * kQTApertureMode_ and are in ImageCompression.h. 
    * When a movie is in clean, production or encoded pixels aperture
-   * mode, each track's dimensions are overridden by special dimensions
+   * mode, each track's dimensions are overriden by special dimensions
    * for that mode. The original track dimensions are preserved and can
    * be restored by setting the movie into classic aperture mode.
    }