diff options
| author | Bryce Harrington <bryce@bryceharrington.org> | 2006-12-07 06:30:35 +0000 |
|---|---|---|
| committer | bryce <bryce@users.sourceforge.net> | 2006-12-07 06:30:35 +0000 |
| commit | 1efec5f779b9b4c15b2a601f7e181a015ff918db (patch) | |
| tree | eaba001bb6fea1761245a4c0bed9d6490c6b310c | |
| parent | Marker menus now display custom markers in a document that are present (diff) | |
| download | inkscape-1efec5f779b9b4c15b2a601f7e181a015ff918db.tar.gz inkscape-1efec5f779b9b4c15b2a601f7e181a015ff918db.zip | |
Adding some docs
(bzr r2081)
| -rw-r--r-- | src/sp-object.cpp | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/sp-object.cpp b/src/sp-object.cpp index 72a93ec3b..9294a2e9f 100644 --- a/src/sp-object.cpp +++ b/src/sp-object.cpp @@ -1198,6 +1198,9 @@ SPObject::requestDisplayUpdate(unsigned int flags) } } +/** + * Update views + */ void SPObject::updateDisplay(SPCtx *ctx, unsigned int flags) { @@ -1268,7 +1271,10 @@ SPObject::requestModified(unsigned int flags) } /** - * This is what actually delivers the modified signals + * Emits the MODIFIED signal with the object's flags. + * The object's mflags are the original set aside during the update pass for + * later delivery here. Once emitModified() is called, those flags don't + * need to be stored any longer. */ void SPObject::emitModified(unsigned int flags) |
