Fix typo and put the correct snippets in the output.
authorCasper van Donderen <casper.vandonderen@nokia.com>
Mon, 20 Jun 2011 15:42:51 +0000 (17:42 +0200)
committerCasper van Donderen <casper.vandonderen@nokia.com>
Mon, 20 Jun 2011 15:45:46 +0000 (17:45 +0200)
Reviewed-by: David Boddie
doc/src/declarative/example-textballoons.qdoc

index 90de999..7c21d18 100644 (file)
 
     \section1 TextBalloon Class Declaration
 
-    The \c TextBalloon class inherits from QSGPaintedItem. QSGPaintedItem class
+    The \c TextBalloon class inherits from QSGPaintedItem. QSGPaintedItem
     is the base class for all QPainter based items in the QML Scene Graph
     framework.
 
-    \snippet examples/declarative/painteditem/textballoons/textballoonplugin/textballoon.h 0
+    \snippet examples/declarative/painteditem/textballoons/textballoon.h 0
 
     To implement a QSGPaintedItem you must implement QSGPaintedIem's pure
     virtual function \l {QSGPaintedItem::}{paint()} which implements the
     We have to be sure to initialize the rightAligned property for a
     TextBalloon item.
 
-    \snippet examples/declarative/painteditem/textballoons/textballoonplugin/textballoon.cpp 0
+    \snippet examples/declarative/painteditem/textballoons/textballoon.cpp 0
 
     Then we implement the \c paint() function which is automatically called by
     the Scenegraph framework to paint the contents of the item. The function
     paints the item in local coordinates.
 
-    \snippet examples/declarative/painteditem/textballoons/textballoonplugin/textballoon.cpp 1
+    \snippet examples/declarative/painteditem/textballoons/textballoon.cpp 1
 
     We start with setting the pen and brush on the item to define the look of
     the item. After that we start drawing. Note that the \l {QSGPaintedItem::}{boundingRect()}