diff options
| author | Albrecht Schlosser <albrechts.fltk@online.de> | 2008-10-01 15:28:41 +0000 |
|---|---|---|
| committer | Albrecht Schlosser <albrechts.fltk@online.de> | 2008-10-01 15:28:41 +0000 |
| commit | 98c794fee95146ec04e63ba757f4875530f865ac (patch) | |
| tree | f0c4d019b78ab9b3f760efb6ba9a29fc78f6808e /FL/Fl_Cairo.H | |
| parent | 6dce14f1f5bb26208b4d5d49891c38cc156522e8 (diff) | |
added svn properties and fixed some documentation typos.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@6361 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'FL/Fl_Cairo.H')
| -rw-r--r-- | FL/Fl_Cairo.H | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/FL/Fl_Cairo.H b/FL/Fl_Cairo.H index 15cd14831..3793b669f 100644 --- a/FL/Fl_Cairo.H +++ b/FL/Fl_Cairo.H @@ -26,7 +26,7 @@ // /** \file - Hanling transparently platform dependent cairo include files + Handling transparently platform dependent cairo include files */ #ifndef FL_CAIRO_H @@ -68,7 +68,7 @@ public: // access attributes cairo_t* cc() const {return cc_;} ///< Gets the current cairo context - bool autolink() const {return autolink_;} ///< Sets the autolink option \see Fl:cairo_autolink_context(bool) + bool autolink() const {return autolink_;} ///< Sets the autolink option \see Fl::cairo_autolink_context(bool) void cc(cairo_t* c, bool own=true) { ///< Sets the current cairo context, \a own indicates cc deletion is made by us if (cc_ && own_cc_) cairo_destroy(cc_); cc_=c; @@ -76,9 +76,9 @@ public: own_cc_=own; } void autolink(bool b) {autolink_ = b;} ///< Gets the autolink option - void window(void* w) {window_=w;} ///< Sets the window \w to keep track on + void window(void* w) {window_=w;} ///< Sets the window \a w to keep track on void* window() const {return window_;} ///< Gets the last window attached to a cc - void gc(void* c) {gc_=c;} ///< Sets the gc \c to keep track on + void gc(void* c) {gc_=c;} ///< Sets the gc \a c to keep track on void* gc() const {return gc_;} ///< Gets the last gc attached to a cc private: |
