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 /win32/PlatWin.cxx | |
parent | 3b031e3e5ec28064ce2bb4e67e0d9e48a40ee594 (diff) | |
download | scintilla-mirror-5f4928ccf5dabaa8e9df1061f7a8cc4ff1b97603.tar.gz |
Changed Function* to simpler Function.
Diffstat (limited to 'win32/PlatWin.cxx')
-rw-r--r-- | win32/PlatWin.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/win32/PlatWin.cxx b/win32/PlatWin.cxx index c92b274cb..472c8b9a2 100644 --- a/win32/PlatWin.cxx +++ b/win32/PlatWin.cxx @@ -1302,9 +1302,9 @@ public: } // Use GetProcAddress to get a pointer to the relevant function. - virtual Function *FindFunction(const char *name) { + virtual Function FindFunction(const char *name) { if (h != NULL) { - return static_cast<Function*>( + return static_cast<Function>( (void *)(::GetProcAddress(h, name))); } else return NULL; |