summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGraeme Geldenhuys <graeme@mastermaths.co.za>2011-05-03 23:57:12 +0200
committerGraeme Geldenhuys <graeme@mastermaths.co.za>2011-05-03 23:57:12 +0200
commitb859e30002887184c14eb0a309a38f611f3878b2 (patch)
treeeab9583192b8650e27482dacc4d6b4b15e051ee1
parent55393ab7a5db0a02c3b4c3ecee13116abf8b0b56 (diff)
downloadfpGUI-b859e30002887184c14eb0a309a38f611f3878b2.tar.xz
Fixed a compiler warning. I forgot to set the function result.
-rw-r--r--src/corelib/fpg_main.pas2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/corelib/fpg_main.pas b/src/corelib/fpg_main.pas
index d3b7693d..7bd54737 100644
--- a/src/corelib/fpg_main.pas
+++ b/src/corelib/fpg_main.pas
@@ -2638,7 +2638,7 @@ begin
raise Exception.Create(ClassName + ': No Source window was specified before starting the drag');
if ADropActions = [] then
raise Exception.Create(ClassName + ': No Drop Action was specified');
- inherited Execute(ADropActions, ADefaultAction);
+ Result := inherited Execute(ADropActions, ADefaultAction);
end;