X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=synfig-studio%2Ftags%2Fstable%2Fsrc%2Fgtkmm%2Fvaluelink.cpp;h=7732d3389ba49609f7d7c940953fe9a878c3bc91;hb=684cf1db661a9a5cbc142238cf05d6d2f7aa3f89;hp=c4e64b4d76ae2580982b6bd24034d7966ba30c11;hpb=7c6d5426922cb3cda793f688dcd4d534b02765c8;p=synfig.git diff --git a/synfig-studio/tags/stable/src/gtkmm/valuelink.cpp b/synfig-studio/tags/stable/src/gtkmm/valuelink.cpp index c4e64b4..7732d33 100644 --- a/synfig-studio/tags/stable/src/gtkmm/valuelink.cpp +++ b/synfig-studio/tags/stable/src/gtkmm/valuelink.cpp @@ -1,20 +1,21 @@ -/* === S I N F G =========================================================== */ +/* === S Y N F I G ========================================================= */ /*! \file valuelink.cpp ** \brief ValueBase Link Implementation File ** -** $Id: valuelink.cpp,v 1.1.1.1 2005/01/07 03:34:37 darco Exp $ +** $Id$ ** ** \legal ** Copyright (c) 2004 Adrian Bentley ** -** This software and associated documentation -** are CONFIDENTIAL and PROPRIETARY property of -** the above-mentioned copyright holder. +** This package is free software; you can redistribute it and/or +** modify it under the terms of the GNU General Public License as +** published by the Free Software Foundation; either version 2 of +** the License, or (at your option) any later version. ** -** You may not copy, print, publish, or in any -** other way distribute this software without -** a prior written agreement with -** the copyright holder. +** This package is distributed in the hope that it will be useful, +** but WITHOUT ANY WARRANTY; without even the implied warranty of +** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +** General Public License for more details. ** \endlegal */ /* ========================================================================= */ @@ -36,7 +37,7 @@ using namespace std; using namespace etl; -using namespace sinfg; +using namespace synfig; using studio::ValueBaseLink; @@ -64,12 +65,12 @@ ValueBaseLink::~ValueBaseLink() ValueNode::LooseHandle ValueBaseLink::get_link_vfunc(int i)const { /*list_type::const_iterator it = list.begin(); - + while(it != list.end() && i-- > 0) { ++it; } - + if(it == list.end()) { return ValueNode::LooseHandle(); @@ -98,7 +99,7 @@ String ValueBaseLink::link_local_name(int i)const if(h) { - return h->get_local_name(); + return h->get_local_name(); }else return String(); } @@ -127,7 +128,7 @@ ValueBaseLink::list_type::const_iterator ValueBaseLink::findlink(ValueNode::Hand return i; } } - + return list.end(); } ValueBaseLink::list_type::iterator ValueBaseLink::findlink(ValueNode::Handle x) @@ -139,14 +140,14 @@ ValueBaseLink::list_type::iterator ValueBaseLink::findlink(ValueNode::Handle x) return i; } } - + return list.end(); } void ValueBaseLink::add(ValueNode::Handle v) { list_type::iterator i = findlink(v); - + if(i != list.end()) { list.push_back(v); @@ -156,7 +157,7 @@ void ValueBaseLink::add(ValueNode::Handle v) void ValueBaseLink::remove(ValueNode::Handle v) { list_type::iterator i = findlink(v); - + if(i != list.end()) { if(i != list.end()-1) @@ -164,5 +165,5 @@ void ValueBaseLink::remove(ValueNode::Handle v) *i = list.back(); } list.pop_back(); - } + } }