diff options
| author | Markus Engel <markus.engel@tum.de> | 2013-03-29 23:56:13 +0000 |
|---|---|---|
| committer | Markus Engel <markus.engel@tum.de> | 2013-03-29 23:56:13 +0000 |
| commit | 7df6616da5ea2debb86838366ddf746841549cdb (patch) | |
| tree | 4557bc8c1950fe5c0f9e6063bd261f4a5c6ec5da /src/sp-flowtext.h | |
| parent | merged from trunk (diff) | |
| download | inkscape-7df6616da5ea2debb86838366ddf746841549cdb.tar.gz inkscape-7df6616da5ea2debb86838366ddf746841549cdb.zip | |
Renamed virtual function names.
(bzr r11608.1.57)
Diffstat (limited to 'src/sp-flowtext.h')
| -rw-r--r-- | src/sp-flowtext.h | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/src/sp-flowtext.h b/src/sp-flowtext.h index 9f1681636..f3dfb0a8e 100644 --- a/src/sp-flowtext.h +++ b/src/sp-flowtext.h @@ -66,24 +66,24 @@ public: CFlowtext(SPFlowtext* flowtext); virtual ~CFlowtext(); - virtual void onBuild(SPDocument* doc, Inkscape::XML::Node* repr); + virtual void build(SPDocument* doc, Inkscape::XML::Node* repr); - virtual void onChildAdded(Inkscape::XML::Node* child, Inkscape::XML::Node* ref); - virtual void onRemoveChild(Inkscape::XML::Node* child); + virtual void child_added(Inkscape::XML::Node* child, Inkscape::XML::Node* ref); + virtual void remove_child(Inkscape::XML::Node* child); - virtual void onSet(unsigned int key, const gchar* value); + virtual void set(unsigned int key, const gchar* value); - virtual void onUpdate(SPCtx* ctx, unsigned int flags); - virtual void onModified(unsigned int flags); + virtual void update(SPCtx* ctx, unsigned int flags); + virtual void modified(unsigned int flags); - virtual Inkscape::XML::Node* onWrite(Inkscape::XML::Document* doc, Inkscape::XML::Node* repr, guint flags); + virtual Inkscape::XML::Node* write(Inkscape::XML::Document* doc, Inkscape::XML::Node* repr, guint flags); - virtual Geom::OptRect onBbox(Geom::Affine const &transform, SPItem::BBoxType type); - virtual void onPrint(SPPrintContext *ctx); - virtual gchar* onDescription(); - virtual Inkscape::DrawingItem* onShow(Inkscape::Drawing &drawing, unsigned int key, unsigned int flags); - virtual void onHide(unsigned int key); - virtual void onSnappoints(std::vector<Inkscape::SnapCandidatePoint> &p, Inkscape::SnapPreferences const *snapprefs); + virtual Geom::OptRect bbox(Geom::Affine const &transform, SPItem::BBoxType type); + virtual void print(SPPrintContext *ctx); + virtual gchar* description(); + virtual Inkscape::DrawingItem* show(Inkscape::Drawing &drawing, unsigned int key, unsigned int flags); + virtual void hide(unsigned int key); + virtual void snappoints(std::vector<Inkscape::SnapCandidatePoint> &p, Inkscape::SnapPreferences const *snapprefs); protected: SPFlowtext* spflowtext; }; |
