diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2020-09-24 07:02:14 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2020-09-24 07:02:14 (GMT) |
commit | 5b12d145d9da9f260abb7e80098fba993b2ea58b (patch) | |
tree | 96bf7b8ed084d9aba8a5c20b8d70b0b9412dce69 /unix/tkUnixInt.h | |
parent | 454614a38dfb1db1931eb58c16e3c8eb4f3c10b8 (diff) | |
download | tk-5b12d145d9da9f260abb7e80098fba993b2ea58b.zip tk-5b12d145d9da9f260abb7e80098fba993b2ea58b.tar.gz tk-5b12d145d9da9f260abb7e80098fba993b2ea58b.tar.bz2 |
The UnixSysTray part builds without libnotify. Eliminate some gcc warnings
Diffstat (limited to 'unix/tkUnixInt.h')
-rw-r--r-- | unix/tkUnixInt.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/unix/tkUnixInt.h b/unix/tkUnixInt.h index 947ce44..7904e79 100644 --- a/unix/tkUnixInt.h +++ b/unix/tkUnixInt.h @@ -24,11 +24,10 @@ #include "tkIntPlatDecls.h" -#ifdef HAVE_LIBNOTIFY MODULE_SCOPE int Tktray_Init (Tcl_Interp* interp); +#ifdef HAVE_LIBNOTIFY MODULE_SCOPE int SysNotify_Init (Tcl_Interp* interp); #else -#define Tktray_Init(interp) TCL_OK #define SysNotify_Init(interp) TCL_OK #endif |