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-path.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-path.h')
| -rw-r--r-- | src/sp-path.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/sp-path.h b/src/sp-path.h index 92757d39d..27d5b739d 100644 --- a/src/sp-path.h +++ b/src/sp-path.h @@ -59,18 +59,18 @@ public: CPath(SPPath* path); ~CPath(); - virtual void onBuild(SPDocument *document, Inkscape::XML::Node *repr); - virtual void onRelease(); - virtual void onUpdate(SPCtx* ctx, guint flags); + virtual void build(SPDocument *document, Inkscape::XML::Node *repr); + virtual void release(); + virtual void update(SPCtx* ctx, guint flags); - virtual void onSet(unsigned int key, gchar const* value); - virtual Inkscape::XML::Node* onWrite(Inkscape::XML::Document *xml_doc, Inkscape::XML::Node *repr, guint flags); + virtual void set(unsigned int key, gchar const* value); + virtual Inkscape::XML::Node* write(Inkscape::XML::Document *xml_doc, Inkscape::XML::Node *repr, guint flags); - virtual gchar* onDescription(); - virtual Geom::Affine onSetTransform(Geom::Affine const &transform); - virtual void onConvertToGuides(); + virtual gchar* description(); + virtual Geom::Affine set_transform(Geom::Affine const &transform); + virtual void convert_to_guides(); - virtual void onUpdatePatheffect(bool write); + virtual void update_patheffect(bool write); protected: SPPath* sppath; |
