diff options
| author | Jon A. Cruz <jon@joncruz.org> | 2007-11-02 08:00:40 +0000 |
|---|---|---|
| committer | joncruz <joncruz@users.sourceforge.net> | 2007-11-02 08:00:40 +0000 |
| commit | abcd0cd508385848239660e4f6873b85982aad58 (patch) | |
| tree | 5389a868c995ecbff6cb438644a805d4a7fa0212 /src/layer-manager.cpp | |
| parent | fix bug [ 1824359 ] Gradient isn't snapping with ctrl pressed (diff) | |
| download | inkscape-abcd0cd508385848239660e4f6873b85982aad58.tar.gz inkscape-abcd0cd508385848239660e4f6873b85982aad58.zip | |
warning cleanup
(bzr r4012)
Diffstat (limited to 'src/layer-manager.cpp')
| -rw-r--r-- | src/layer-manager.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/layer-manager.cpp b/src/layer-manager.cpp index e6a34852d..34a909a79 100644 --- a/src/layer-manager.cpp +++ b/src/layer-manager.cpp @@ -38,11 +38,11 @@ public: _labelAttr(g_quark_from_string("inkscape:label")) {} - virtual void notifyChildAdded( Node &node, Node &child, Node *prev ) {} - virtual void notifyChildRemoved( Node &node, Node &child, Node *prev ) {} - virtual void notifyChildOrderChanged( Node &node, Node &child, Node *old_prev, Node *new_prev ) {} - virtual void notifyContentChanged( Node &node, Util::ptr_shared<char> old_content, Util::ptr_shared<char> new_content ) {} - virtual void notifyAttributeChanged( Node &node, GQuark name, Util::ptr_shared<char> old_value, Util::ptr_shared<char> new_value ) { + virtual void notifyChildAdded( Node &/*node*/, Node &/*child*/, Node */*prev*/ ) {} + virtual void notifyChildRemoved( Node &/*node*/, Node &/*child*/, Node */*prev*/ ) {} + virtual void notifyChildOrderChanged( Node &/*node*/, Node &/*child*/, Node */*old_prev*/, Node */*new_prev*/ ) {} + virtual void notifyContentChanged( Node &/*node*/, Util::ptr_shared<char> /*old_content*/, Util::ptr_shared<char> /*new_content*/ ) {} + virtual void notifyAttributeChanged( Node &/*node*/, GQuark name, Util::ptr_shared<char> /*old_value*/, Util::ptr_shared<char> /*new_value*/ ) { if ( name == _lockedAttr || name == _labelAttr ) { if ( _mgr && _obj ) { _mgr->_objectModified( _obj, 0 ); @@ -148,7 +148,7 @@ void LayerManager::_setDocument(SPDocument *document) { _rebuild(); } -void LayerManager::_objectModified( SPObject* obj, guint flags ) +void LayerManager::_objectModified( SPObject* obj, guint /*flags*/ ) { _details_changed_signal.emit( obj ); } |
