summaryrefslogtreecommitdiff
path: root/FL/Fl_Cairo.H
diff options
context:
space:
mode:
Diffstat (limited to 'FL/Fl_Cairo.H')
-rw-r--r--FL/Fl_Cairo.H6
1 files changed, 3 insertions, 3 deletions
diff --git a/FL/Fl_Cairo.H b/FL/Fl_Cairo.H
index 32491e684..aeed1fdeb 100644
--- a/FL/Fl_Cairo.H
+++ b/FL/Fl_Cairo.H
@@ -67,7 +67,7 @@ public:
// access attributes
cairo_t* cc() const {return cc_;} ///< Gets the current cairo context
bool autolink() const {return autolink_;} ///< Gets the autolink option. See Fl::cairo_autolink_context(bool)
- /** Sets the current cairo context, \a own indicates cc deletion is handle externally by user */
+ /** Sets the current cairo context, \p own indicates cc deletion is handle externally by user */
void cc(cairo_t* c, bool own=true) {
if (cc_ && own_cc_) cairo_destroy(cc_);
cc_=c;
@@ -75,9 +75,9 @@ public:
own_cc_=own;
}
void autolink(bool b); ///< Sets the autolink option, only available with --enable-cairoext
- void window(void* w) {window_=w;} ///< Sets the window \a w to keep track on
+ void window(void* w) {window_=w;} ///< Sets the window \p 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 \a c to keep track on
+ void gc(void* c) {gc_=c;} ///< Sets the gc \p c to keep track on
void* gc() const {return gc_;} ///< Gets the last gc attached to a cc
private: