aboutsummaryrefslogtreecommitdiffhomepage
path: root/gtk/PlatGTK.cxx
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2003-04-18 10:26:34 +0000
committernyamatongwe <devnull@localhost>2003-04-18 10:26:34 +0000
commit1805788277237ea895b016637b07a1027f5e28a7 (patch)
tree9b74bf864ac3d95df62e5a8d854b0f6e59848cc7 /gtk/PlatGTK.cxx
parent3999fd3df65cf0123df03b9e3004c09a74928926 (diff)
downloadscintilla-mirror-1805788277237ea895b016637b07a1027f5e28a7.tar.gz
Changed Function* to simpler Function.
Diffstat (limited to 'gtk/PlatGTK.cxx')
-rw-r--r--gtk/PlatGTK.cxx4
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