summaryrefslogtreecommitdiff
path: root/src/corelib
diff options
context:
space:
mode:
authorGraeme Geldenhuys <graeme@mastermaths.co.za>2012-02-29 15:59:55 +0200
committerGraeme Geldenhuys <graeme@mastermaths.co.za>2012-02-29 15:59:55 +0200
commit0e265331179fdb03796acfccb6f874ad412f47de (patch)
treee606c65e8c947ee82ecae99672302a8413569499 /src/corelib
parentc78f27ab6ce5a4e3b06e522672600d763bb8ea0c (diff)
downloadfpGUI-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')
-rw-r--r--src/corelib/gdi/fpg_interface.pas22
-rw-r--r--src/corelib/x11/fpg_interface.pas22
2 files changed, 22 insertions, 22 deletions
diff --git a/src/corelib/gdi/fpg_interface.pas b/src/corelib/gdi/fpg_interface.pas
index f4aee4e3..8833f44d 100644
--- a/src/corelib/gdi/fpg_interface.pas
+++ b/src/corelib/gdi/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_gdi;
type
- TfpgFontResourceImpl = TfpgGDIFontResource;
- TfpgImageImpl = TfpgGDIImage;
- TfpgCanvasImpl = TfpgGDICanvas;
- TfpgWindowImpl = TfpgGDIWindow;
- TfpgApplicationImpl = TfpgGDIApplication;
- TfpgClipboardImpl = TfpgGDIClipboard;
- TfpgFileListImpl = TfpgGDIFileList;
- TfpgMimeDataImpl = TfpgGDIMimeDataBase;
- TfpgDragImpl = TfpgGDIDrag;
- TfpgTimerImpl = TfpgGDITimer;
+ TfpgFontResourceImpl = class(TfpgGDIFontResource);
+ TfpgImageImpl = class(TfpgGDIImage);
+ TfpgCanvasImpl = class(TfpgGDICanvas);
+ TfpgWindowImpl = class(TfpgGDIWindow);
+ TfpgApplicationImpl = class(TfpgGDIApplication);
+ TfpgClipboardImpl = class(TfpgGDIClipboard);
+ TfpgFileListImpl = class(TfpgGDIFileList);
+ TfpgMimeDataImpl = class(TfpgGDIMimeDataBase);
+ TfpgDragImpl = class(TfpgGDIDrag);
+ TfpgTimerImpl = class(TfpgGDITimer);
implementation
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