summaryrefslogtreecommitdiffstats
path: root/src/sp-feoffset.cpp
diff options
context:
space:
mode:
authorJon A. Cruz <jon@joncruz.org>2007-02-19 18:10:02 +0000
committerjoncruz <joncruz@users.sourceforge.net>2007-02-19 18:10:02 +0000
commitb0cc28bf898225878290d34dc569585847cfff48 (patch)
treef176c3305b05c2ab9027864e0747bfdbc3a136ba /src/sp-feoffset.cpp
parentnow at least the first opening of the first gtkmm dialog opens it in-place wi... (diff)
downloadinkscape-b0cc28bf898225878290d34dc569585847cfff48.tar.gz
inkscape-b0cc28bf898225878290d34dc569585847cfff48.zip
Fixed unintialized variables and minor misc warnings
(bzr r2398)
Diffstat (limited to 'src/sp-feoffset.cpp')
-rw-r--r--src/sp-feoffset.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/sp-feoffset.cpp b/src/sp-feoffset.cpp
index 0f2f05062..b766f5224 100644
--- a/src/sp-feoffset.cpp
+++ b/src/sp-feoffset.cpp
@@ -108,8 +108,9 @@ static void
sp_feOffset_set(SPObject *object, unsigned int key, gchar const *value)
{
SPFeOffset *feOffset = SP_FEOFFSET(object);
+ (void)feOffset;
- switch(key) {
+ switch(key) {
/*DEAL WITH SETTING ATTRIBUTES HERE*/
default:
if (((SPObjectClass *) feOffset_parent_class)->set)