diff options
author | nyamatongwe <unknown> | 2003-04-18 10:26:34 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2003-04-18 10:26:34 +0000 |
commit | 5f4928ccf5dabaa8e9df1061f7a8cc4ff1b97603 (patch) | |
tree | 9b74bf864ac3d95df62e5a8d854b0f6e59848cc7 /gtk/PlatGTK.cxx | |
parent | 3b031e3e5ec28064ce2bb4e67e0d9e48a40ee594 (diff) | |
download | scintilla-mirror-5f4928ccf5dabaa8e9df1061f7a8cc4ff1b97603.tar.gz |
Changed Function* to simpler Function.
Diffstat (limited to 'gtk/PlatGTK.cxx')
-rw-r--r-- | gtk/PlatGTK.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/PlatGTK.cxx b/gtk/PlatGTK.cxx index d0778c707..b3f5247e1 100644 --- a/gtk/PlatGTK.cxx +++ b/gtk/PlatGTK.cxx @@ -1933,12 +1933,12 @@ public: } // Use g_module_symbol to get a pointer to the relevant function. - virtual Function *FindFunction(const char *name) { + virtual Function FindFunction(const char *name) { if (m != NULL) { gpointer fn_address = NULL; gboolean status = g_module_symbol(m, name, &fn_address); if (status) - return static_cast<Function*>( fn_address ); + return static_cast<Function>(fn_address); else return NULL; } else |