summaryrefslogtreecommitdiffstats
path: root/src/sp-rect.h
diff options
context:
space:
mode:
authorMarkus Engel <markus.engel@tum.de>2013-03-29 23:56:13 +0000
committerMarkus Engel <markus.engel@tum.de>2013-03-29 23:56:13 +0000
commit7df6616da5ea2debb86838366ddf746841549cdb (patch)
tree4557bc8c1950fe5c0f9e6063bd261f4a5c6ec5da /src/sp-rect.h
parentmerged from trunk (diff)
downloadinkscape-7df6616da5ea2debb86838366ddf746841549cdb.tar.gz
inkscape-7df6616da5ea2debb86838366ddf746841549cdb.zip
Renamed virtual function names.
(bzr r11608.1.57)
Diffstat (limited to 'src/sp-rect.h')
-rw-r--r--src/sp-rect.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/sp-rect.h b/src/sp-rect.h
index 078d63a17..325413c23 100644
--- a/src/sp-rect.h
+++ b/src/sp-rect.h
@@ -50,19 +50,19 @@ public:
CRect(SPRect* sprect);
virtual ~CRect();
- virtual void onBuild(SPDocument* doc, Inkscape::XML::Node* repr);
+ virtual void build(SPDocument* doc, Inkscape::XML::Node* repr);
- void onSet(unsigned key, gchar const *value);
- void onUpdate(SPCtx* ctx, unsigned int flags);
+ void set(unsigned key, gchar const *value);
+ void update(SPCtx* ctx, unsigned int flags);
- virtual Inkscape::XML::Node* onWrite(Inkscape::XML::Document *xml_doc, Inkscape::XML::Node *repr, guint flags);
- virtual gchar* onDescription();
+ virtual Inkscape::XML::Node* write(Inkscape::XML::Document *xml_doc, Inkscape::XML::Node *repr, guint flags);
+ virtual gchar* description();
- void onSetShape();
- virtual Geom::Affine onSetTransform(Geom::Affine const& xform);
+ void set_shape();
+ virtual Geom::Affine set_transform(Geom::Affine const& xform);
- void onSnappoints(std::vector<Inkscape::SnapCandidatePoint> &p, Inkscape::SnapPreferences const *snapprefs);
- void onConvertToGuides();
+ void snappoints(std::vector<Inkscape::SnapCandidatePoint> &p, Inkscape::SnapPreferences const *snapprefs);
+ void convert_to_guides();
protected:
SPRect* sprect;