summaryrefslogtreecommitdiffstats
path: root/macosx/tkMacOSXConfig.c
diff options
context:
space:
mode:
Diffstat (limited to 'macosx/tkMacOSXConfig.c')
-rw-r--r--macosx/tkMacOSXConfig.c14
1 files changed, 5 insertions, 9 deletions
diff --git a/macosx/tkMacOSXConfig.c b/macosx/tkMacOSXConfig.c
index 68ce856..b93c9a0 100644
--- a/macosx/tkMacOSXConfig.c
+++ b/macosx/tkMacOSXConfig.c
@@ -17,7 +17,7 @@
/*
*----------------------------------------------------------------------
*
- * TkpGetSystemDefault --
+ * Tk_GetSystemDefault --
*
* Given a dbName and className for a configuration option,
* return a string representation of the option.
@@ -34,15 +34,11 @@
*/
Tcl_Obj *
-TkpGetSystemDefault(
- Tk_Window tkwin, /* A window to use. */
- const char *dbName, /* The option database name. */
- const char *className) /* The name of the option class. */
+Tk_GetSystemDefault(
+ TCL_UNUSED(Tk_Window), /* A window to use. */
+ TCL_UNUSED(const char *), /* The option database name. */
+ TCL_UNUSED(const char *)) /* The name of the option class. */
{
- (void)tkwin;
- (void)dbName;
- (void)className;
-
return NULL;
}