Fix 1776156: "region and outline position ducks aren't linked". They are now - there...
[synfig.git] / synfig-studio / trunk / src / gtkmm / dialogsettings.cpp
index 51817d3..1705087 100644 (file)
@@ -2,7 +2,7 @@
 /*!    \file dialogsettings.cpp
 **     \brief Template File
 **
-**     $Id: dialogsettings.cpp,v 1.1.1.1 2005/01/07 03:34:36 darco Exp $
+**     $Id$
 **
 **     \legal
 **     Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
@@ -116,8 +116,8 @@ DialogSettings::set_value(const synfig::String& key,const synfig::String& value)
 {
        if(value.empty())
                return false;
-       
-       if(key=="pos") 
+
+       if(key=="pos")
        {
                int x,y;
                if(!strscanf(value,"%d %d",&x, &y))
@@ -125,7 +125,7 @@ DialogSettings::set_value(const synfig::String& key,const synfig::String& value)
                window->move(x,y);
                return true;
        }
-       if(key=="size") 
+       if(key=="size")
        {
                int x,y;
                if(!strscanf(value,"%d %d",&x, &y))
@@ -133,7 +133,7 @@ DialogSettings::set_value(const synfig::String& key,const synfig::String& value)
                window->set_default_size(x,y);
                return true;
        }
-       if(key=="x") 
+       if(key=="x")
        {
                int x,y; window->get_position(x,y);
                x=atoi(value.c_str());
@@ -177,10 +177,10 @@ synfigapp::Settings::KeyList
 DialogSettings::get_key_list()const
 {
        synfigapp::Settings::KeyList ret(synfigapp::Settings::get_key_list());
-       
+
        ret.push_back("size");
        ret.push_back("pos");
        ret.push_back("visible");
-       
+
        return ret;
 }