summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManolo Gouy <Manolo>2016-03-01 21:28:13 +0000
committerManolo Gouy <Manolo>2016-03-01 21:28:13 +0000
commitf14de4048eb36ce1aa07d837349dc9687f6f0a61 (patch)
treea3e764ac97c5559bf3d6524d221cfd5c75e7a9aa
parent2072fcd698b36e3608e56feb75a77e3f790c02ce (diff)
Fix a few Doxygen warnings.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3-porting@11261 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
-rw-r--r--src/Fl_Copy_Surface.cxx3
-rw-r--r--src/drivers/GDI/Fl_GDI_Copy_Surface.H2
-rw-r--r--src/drivers/Quartz/Fl_Quartz_Copy_Surface.H2
-rw-r--r--src/drivers/Xlib/Fl_Xlib_Copy_Surface.H2
4 files changed, 5 insertions, 4 deletions
diff --git a/src/Fl_Copy_Surface.cxx b/src/Fl_Copy_Surface.cxx
index c6c1a3192..c3f2886bc 100644
--- a/src/Fl_Copy_Surface.cxx
+++ b/src/Fl_Copy_Surface.cxx
@@ -25,7 +25,7 @@
#elif defined(WIN32)
#include <src/drivers/GDI/Fl_GDI_Copy_Surface.H>
-#elif defined(FL_PORTING)
+#elif defined(FL_PORTING) && !defined(FL_DOXYGEN)
# pragma message "FL_PORTING: implement class Fl_Copy_Surface::Helper for your platform"
class Fl_Copy_Surface::Helper : public Fl_Widget_Surface { // model
@@ -51,6 +51,7 @@ Fl_Copy_Surface::Helper *Fl_Copy_Surface::newPlatformSurface(int w, int h) {
return new Helper(w, h);
}
+/** the constructor */
Fl_Copy_Surface::Fl_Copy_Surface(int w, int h) : Fl_Widget_Surface(NULL) {
platform_surface = newPlatformSurface(w, h);
driver(platform_surface->driver());
diff --git a/src/drivers/GDI/Fl_GDI_Copy_Surface.H b/src/drivers/GDI/Fl_GDI_Copy_Surface.H
index d5beaaa98..739bb4962 100644
--- a/src/drivers/GDI/Fl_GDI_Copy_Surface.H
+++ b/src/drivers/GDI/Fl_GDI_Copy_Surface.H
@@ -17,7 +17,7 @@
//
-#ifndef Fl_GDI_Copy_Surface_h
+#if !defined(Fl_GDI_Copy_Surface_h) && !defined(FL_DOXYGEN)
#define Fl_GDI_Copy_Surface_h
#include <FL/Fl_Copy_Surface.H>
diff --git a/src/drivers/Quartz/Fl_Quartz_Copy_Surface.H b/src/drivers/Quartz/Fl_Quartz_Copy_Surface.H
index 2cb1b2848..3d7f4c6cf 100644
--- a/src/drivers/Quartz/Fl_Quartz_Copy_Surface.H
+++ b/src/drivers/Quartz/Fl_Quartz_Copy_Surface.H
@@ -16,7 +16,7 @@
// http://www.fltk.org/str.php
//
-#ifndef FL_QUARTZ_COPY_SURFACE_H
+#if !defined(Fl_Quartz_Copy_Surface_h) && !defined(FL_DOXYGEN)
#define FL_QUARTZ_COPY_SURFACE_H 1
#include <FL/Fl_Copy_Surface.H>
diff --git a/src/drivers/Xlib/Fl_Xlib_Copy_Surface.H b/src/drivers/Xlib/Fl_Xlib_Copy_Surface.H
index e0ff5ef31..8d0bae211 100644
--- a/src/drivers/Xlib/Fl_Xlib_Copy_Surface.H
+++ b/src/drivers/Xlib/Fl_Xlib_Copy_Surface.H
@@ -17,7 +17,7 @@
//
-#ifndef Fl_Xlib_Copy_Surface_h
+#if !defined(Fl_Xlib_Copy_Surface_h) && !defined(FL_DOXYGEN)
#define Fl_Xlib_Copy_Surface_h
#include <FL/Fl_Copy_Surface.H>