~ubuntu-branches/ubuntu/breezy/koffice/breezy

« back to all changes in this revision

Viewing changes to kivio/kiviopart/kiviosdk/kivio_shape_data.h

  • Committer: Bazaar Package Importer
  • Author(s): Ben Burton
  • Date: 2004-05-09 11:33:00 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20040509113300-vfrdadqsvjfuhn3b
Tags: 1:1.3.1-1
* New upstream bugfix release.
* Built against newer imagemagick (closes: #246623).
* Made koffice-libs/kformula recommend/depend on latex-xft-fonts, which
  provides mathematical fonts that the formula editor can use.  Also
  patched the kformula part to make these fonts the default.
* Changed kword menu hint from "WordProcessors" to "Word processors"
  (closes: #246209).
* Spellchecker configuration is now fixed (closes: #221256, #227568).

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
#include <qfont.h>
23
23
#include <qcolor.h>
24
24
#include <qdom.h>
25
 
#include <qlist.h>
 
25
#include <qptrlist.h>
26
26
#include <qstring.h>
27
27
 
28
28
#include "kivio_point.h"
73
73
protected:
74
74
    friend class KivioShape;
75
75
    
76
 
    QList <KivioPoint> *m_pOriginalPointList;       // Original point list loaded from an SML file
 
76
    QPtrList <KivioPoint> *m_pOriginalPointList;       // Original point list loaded from an SML file
77
77
    
78
78
    KivioShapeType m_shapeType;                     // The shape type
79
79
    KivioPoint m_position, m_dimensions;            // The position and dimensions
103
103
    
104
104
    static KivioShapeType shapeTypeFromString( const QString & );
105
105
 
106
 
    QList<KivioPoint> *pointList() { return m_pOriginalPointList; }
 
106
    QPtrList<KivioPoint> *pointList() { return m_pOriginalPointList; }
107
107
    
108
108
    KivioFillStyle *fillStyle() const { return m_pFillStyle; }
109
109
    KivioLineStyle *lineStyle() const { return m_pLineStyle; }