aboutsummaryrefslogtreecommitdiff
path: root/doc/dw-usage.doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc/dw-usage.doc')
-rw-r--r--doc/dw-usage.doc8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/dw-usage.doc b/doc/dw-usage.doc
index d0aa8d36..913a4862 100644
--- a/doc/dw-usage.doc
+++ b/doc/dw-usage.doc
@@ -20,7 +20,7 @@ As described in \ref dw-overview, the following objects are needed:
<li> some widgets (for this example, only a simple dw::Textblock).
</ul>
-First of all, the necessary #include's:
+First of all, the necessary \#include's:
\code
#include <fltk/Window.h>
@@ -39,7 +39,7 @@ int main(int argc, char **argv)
{
\endcode
-As the first object, the platform is instanciated:
+As the first object, the platform is instantiated:
\code
dw::fltk::FltkPlatform *platform = new dw::fltk::FltkPlatform ();
@@ -109,7 +109,7 @@ defined, here dw::core::style::Color::createSimple must be called:
Finally, the style for the widget is created:
\code
- dw::core::style::Style *widgetStyle =
+ dw::core::style::Style *widgetStyle =
dw::core::style::Style::create (layout, &styleAttrs);
\endcode
@@ -258,7 +258,7 @@ There are three dw::core::View implementations for FLTK:
overview of the whole canvas.
<li> dw::fltk::FltkFlatView is a "flat" view, i.e. it does not support
- scrolling. It is used for HTML buttons, see
+ scrolling. It is used for HTML buttons, see
dw::fltk::ui::FltkComplexButtonResource and especially
dw::fltk::ui::FltkComplexButtonResource::createNewWidget for details.
</ul>