Skip to content

Commit

Permalink
Change Argument reference to a variable type of variablename to any s…
Browse files Browse the repository at this point in the history
…o QRToad will work under Railo 3.3
  • Loading branch information
boltz committed Apr 4, 2012
1 parent c247f00 commit af8d512
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions com/timcunningham/QRToad/QRCode.cfc
Expand Up @@ -83,7 +83,7 @@
</cffunction> </cffunction>


<cffunction name="ToBinaryImage" access="private"> <cffunction name="ToBinaryImage" access="private">
<cfargument name="image" type="variablename" required="true"> <cfargument name="image" type="any" required="true">
<cfargument name="format" type="string" required="true" hint="png,jpg,gif"> <cfargument name="format" type="string" required="true" hint="png,jpg,gif">


<cfif checkExtension(arguments.format) IS false> <cfif checkExtension(arguments.format) IS false>
Expand Down Expand Up @@ -111,42 +111,42 @@


<!--- ToolkitImage functions ---> <!--- ToolkitImage functions --->
<cffunction name="flush" access="private"> <cffunction name="flush" access="private">
<cfargument name="image" type="variablename" > <cfargument name="image" type="any" >
<cfreturn image.flush()> <cfreturn image.flush()>
</cffunction> </cffunction>


<cffunction name="getBufferedImage" access="private"> <cffunction name="getBufferedImage" access="private">
<cfargument name="image" type="variablename" > <cfargument name="image" type="any" >
<cfreturn image.getBufferedImage()> <cfreturn image.getBufferedImage()>
</cffunction> </cffunction>


<cffunction name="getColorModel" access="private"> <cffunction name="getColorModel" access="private">
<cfargument name="image" type="variablename" > <cfargument name="image" type="any" >
<cfreturn image.getColorModel()> <cfreturn image.getColorModel()>
</cffunction> </cffunction>


<cffunction name="getGraphics" access="private"> <cffunction name="getGraphics" access="private">
<cfargument name="image" type="variablename" > <cfargument name="image" type="any" >
<cfreturn image.getGraphics()> <cfreturn image.getGraphics()>
</cffunction> </cffunction>


<cffunction name="getHeight" access="private"> <cffunction name="getHeight" access="private">
<cfargument name="image" type="variablename" > <cfargument name="image" type="any" >
<cfreturn image.getHeight()> <cfreturn image.getHeight()>
</cffunction> </cffunction>


<cffunction name="getImageRep" access="private"> <cffunction name="getImageRep" access="private">
<cfargument name="image" type="variablename" > <cfargument name="image" type="any" >
<cfreturn image.getImageRep()> <cfreturn image.getImageRep()>
</cffunction> </cffunction>


<cffunction name="getSource" access="private"> <cffunction name="getSource" access="private">
<cfargument name="image" type="variablename" > <cfargument name="image" type="any" >
<cfreturn image.getSource()> <cfreturn image.getSource()>
</cffunction> </cffunction>


<cffunction name="getWidth" access="private"> <cffunction name="getWidth" access="private">
<cfargument name="image" type="variablename" > <cfargument name="image" type="any" >
<cfreturn image.getWidth()> <cfreturn image.getWidth()>
</cffunction> </cffunction>


Expand Down

0 comments on commit af8d512

Please sign in to comment.