diff options
author | Graeme Geldenhuys <graeme@mastermaths.co.za> | 2012-02-29 15:59:55 +0200 |
---|---|---|
committer | Graeme Geldenhuys <graeme@mastermaths.co.za> | 2012-02-29 15:59:55 +0200 |
commit | 0e265331179fdb03796acfccb6f874ad412f47de (patch) | |
tree | e606c65e8c947ee82ecae99672302a8413569499 /src/corelib/x11 | |
parent | c78f27ab6ce5a4e3b06e522672600d763bb8ea0c (diff) | |
download | fpGUI-0e265331179fdb03796acfccb6f874ad412f47de.tar.xz |
changed alias class definitions to class descendants.
FPC doesn't have a problem with the original code, but other tools like
fpdoc does. So to make everybody's life easier, I am making this change.
The benefit now is that fpdoc will be able to generate a nice class
hierarchy of fpGUI classes - without problems.
Diffstat (limited to 'src/corelib/x11')
-rw-r--r-- | src/corelib/x11/fpg_interface.pas | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/src/corelib/x11/fpg_interface.pas b/src/corelib/x11/fpg_interface.pas index 251319de..6f216179 100644 --- a/src/corelib/x11/fpg_interface.pas +++ b/src/corelib/x11/fpg_interface.pas @@ -1,7 +1,7 @@ { fpGUI - Free Pascal GUI Toolkit - Copyright (C) 2006 - 2010 See the file AUTHORS.txt, included in this + Copyright (C) 2006 - 2012 See the file AUTHORS.txt, included in this distribution, for details of the copyright. See the file COPYING.modifiedLGPL, included in this distribution, @@ -26,16 +26,16 @@ uses fpg_x11; type - TfpgFontResourceImpl = TfpgX11FontResource; - TfpgImageImpl = TfpgX11Image; - TfpgCanvasImpl = TfpgX11Canvas; - TfpgWindowImpl = TfpgX11Window; - TfpgApplicationImpl = TfpgX11Application; - TfpgClipboardImpl = TfpgX11Clipboard; - TfpgFileListImpl = TfpgX11FileList; - TfpgMimeDataImpl = TfpgX11MimeData; - TfpgDragImpl = TfpgX11Drag; - TfpgTimerImpl = TfpgX11Timer; + TfpgFontResourceImpl = class(TfpgX11FontResource); + TfpgImageImpl = class(TfpgX11Image); + TfpgCanvasImpl = class(TfpgX11Canvas); + TfpgWindowImpl = class(TfpgX11Window); + TfpgApplicationImpl = class(TfpgX11Application); + TfpgClipboardImpl = class(TfpgX11Clipboard); + TfpgFileListImpl = class(TfpgX11FileList); + TfpgMimeDataImpl = class(TfpgX11MimeData); + TfpgDragImpl = class(TfpgX11Drag); + TfpgTimerImpl = class(TfpgX11Timer); implementation |