diff options
| author | Jon A. Cruz <jon@joncruz.org> | 2007-02-19 18:10:02 +0000 |
|---|---|---|
| committer | joncruz <joncruz@users.sourceforge.net> | 2007-02-19 18:10:02 +0000 |
| commit | b0cc28bf898225878290d34dc569585847cfff48 (patch) | |
| tree | f176c3305b05c2ab9027864e0747bfdbc3a136ba /src/sp-fetile.cpp | |
| parent | now at least the first opening of the first gtkmm dialog opens it in-place wi... (diff) | |
| download | inkscape-b0cc28bf898225878290d34dc569585847cfff48.tar.gz inkscape-b0cc28bf898225878290d34dc569585847cfff48.zip | |
Fixed unintialized variables and minor misc warnings
(bzr r2398)
Diffstat (limited to 'src/sp-fetile.cpp')
| -rw-r--r-- | src/sp-fetile.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/sp-fetile.cpp b/src/sp-fetile.cpp index a00bdd1e1..7d33cd502 100644 --- a/src/sp-fetile.cpp +++ b/src/sp-fetile.cpp @@ -108,8 +108,9 @@ static void sp_feTile_set(SPObject *object, unsigned int key, gchar const *value) { SPFeTile *feTile = SP_FETILE(object); + (void)feTile; - switch(key) {
+ switch(key) { /*DEAL WITH SETTING ATTRIBUTES HERE*/ default: if (((SPObjectClass *) feTile_parent_class)->set) |
