summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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