Commit 1af3c4b9 authored by Robert Sprowson's avatar Robert Sprowson Committed by ROOL
Browse files

Type cast correction

Use the true type rather than a void pointer for toolbox_template_lookup().
Required by ToolboxLib-0_28 or later.

Version 0.16. Tagged as 'WindSetup-0_16'
parent 023b529f
/* (0.15)
/* (0.16)
*
* This file is automatically maintained by srccommit, do not edit manually.
* Last processed by srccommit version: 1.1.
*
*/
#define Module_MajorVersion_CMHG 0.15
#define Module_MajorVersion_CMHG 0.16
#define Module_MinorVersion_CMHG
#define Module_Date_CMHG 03 Aug 2013
#define Module_Date_CMHG 17 Oct 2019
#define Module_MajorVersion "0.15"
#define Module_Version 15
#define Module_MajorVersion "0.16"
#define Module_Version 16
#define Module_MinorVersion ""
#define Module_Date "03 Aug 2013"
#define Module_Date "17 Oct 2019"
#define Module_ApplicationDate "03-Aug-13"
#define Module_ApplicationDate "17-Oct-19"
#define Module_ComponentName "WindSetup"
#define Module_ComponentPath "castle/RiscOS/Sources/SystemRes/Configure2/PlugIns/WindSetup"
#define Module_FullVersion "0.15"
#define Module_HelpVersion "0.15 (03 Aug 2013)"
#define Module_LibraryVersionInfo "0:15"
#define Module_FullVersion "0.16"
#define Module_HelpVersion "0.16 (17 Oct 2019)"
#define Module_LibraryVersionInfo "0:16"
......@@ -85,7 +85,7 @@ int main (int argc, char *argv[])
toolboxe_register ();
/* Read the window object in by hand */
throw (toolbox_template_lookup (0, "Windows", (void **)&objtemplate));
throw (toolbox_template_lookup (0, "Windows", &objtemplate));
if (objtemplate->object_class != Window_ObjectClass) {
_kernel_oserror e = { 0, "" };
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment