summaryrefslogtreecommitdiff
path: root/FL
diff options
context:
space:
mode:
authorAlbrecht Schlosser <albrechts.fltk@online.de>2008-10-01 15:28:41 +0000
committerAlbrecht Schlosser <albrechts.fltk@online.de>2008-10-01 15:28:41 +0000
commit98c794fee95146ec04e63ba757f4875530f865ac (patch)
treef0c4d019b78ab9b3f760efb6ba9a29fc78f6808e /FL
parent6dce14f1f5bb26208b4d5d49891c38cc156522e8 (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')
-rw-r--r--FL/Fl_Cairo.H8
-rw-r--r--FL/Fl_Cairo_Window.H6
2 files changed, 7 insertions, 7 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:
diff --git a/FL/Fl_Cairo_Window.H b/FL/Fl_Cairo_Window.H
index 3914657a9..a711577c8 100644
--- a/FL/Fl_Cairo_Window.H
+++ b/FL/Fl_Cairo_Window.H
@@ -26,7 +26,7 @@
//
/** \file
- Fl_Cairo_Window Hanling transparently a fltk window incorporte a cairo draw callback.
+ Fl_Cairo_Window Handling transparently a fltk window incorporte a cairo draw callback.
*/
#ifndef FL_CAIRO_WINDOW_H
@@ -50,8 +50,8 @@
All cairo context handling is achieved transparently.
\note You can alternatively define your custom cairo fltk window,
and thus at least override the draw() method to provide custom cairo
- support. In this case you will probably use Fl:cairo_make_current(Fl_Window*)
- to attach a context to your window. You should do it on ly when your Window is
+ support. In this case you will probably use Fl::cairo_make_current(Fl_Window*)
+ to attach a context to your window. You should do it only when your window is
the current window. \see Fl_Window::current()
*/
class FL_EXPORT Fl_Cairo_Window : public Fl_Double_Window {