~ubuntu-branches/ubuntu/lucid/synfigstudio/lucid

« back to all changes in this revision

Viewing changes to src/gtkmm/keyframetreestore.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Stefano Zacchiroli
  • Date: 2010-01-26 11:20:50 UTC
  • mfrom: (1.1.5 upstream) (2.1.3 sid)
  • Revision ID: james.westby@ubuntu.com-20100126112050-e43u17c5zpc5hse4
Tags: 0.62.00-1
* QA upload
* Properly orphan the package (set Maintainer to QA, empty Uploaders)
* New upstream release
* Bump build-dep on (lib)synfig to most recent version
* Bump standards-version to 3.8.3, no changes needed
* Change section of the "-dbg" package to debug, thanks lintian

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
/*!     \file keyframetreestore.cpp
3
3
**      \brief Template File
4
4
**
5
 
**      $Id: keyframetreestore.cpp 1643 2008-02-09 19:12:18Z dooglus $
 
5
**      $Id$
6
6
**
7
7
**      \legal
8
8
**      Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
379
379
 
380
380
                        {
381
381
                                Keyframe keyframe((*row)[model.keyframe]);
382
 
                                synfigapp::Action::Handle action(synfigapp::Action::create("keyframe_set_delta"));
 
382
                                synfigapp::Action::Handle action(synfigapp::Action::create("KeyframeSetDelta"));
383
383
 
384
384
                                if(!action)return;
385
385
 
407
407
                        keyframe.set_time(x.get());
408
408
                        synfig::info("KeyframeTreeStore::set_value_impl():new_time=%s",keyframe.get_time().get_string().c_str());
409
409
 
410
 
                        synfigapp::Action::Handle action(synfigapp::Action::create("keyframe_set"));
 
410
                        synfigapp::Action::Handle action(synfigapp::Action::create("KeyframeSet"));
411
411
 
412
412
                        if(!action)
413
413
                                return;
426
426
                        synfig::Keyframe keyframe(*iter->iter);
427
427
                        keyframe.set_description(x.get());
428
428
 
429
 
                        synfigapp::Action::Handle action(synfigapp::Action::create("keyframe_set"));
 
429
                        synfigapp::Action::Handle action(synfigapp::Action::create("KeyframeSet"));
430
430
 
431
431
                        if(!action)
432
432
                                return;
448
448
        }
449
449
        catch(std::exception x)
450
450
        {
451
 
                g_warning(x.what());
 
451
                g_warning("%s", x.what());
452
452
        }
453
453
}
454
454
 
828
828
        }
829
829
        catch(std::exception x)
830
830
        {
831
 
                g_warning(x.what());
 
831
                g_warning("%s", x.what());
832
832
        }
833
833
}
834
834
 
853
853
        }
854
854
        catch(std::exception x)
855
855
        {
856
 
                g_warning(x.what());
 
856
                g_warning("%s", x.what());
857
857
        }
858
858
}
859
859
 
896
896
        }
897
897
        catch(std::exception x)
898
898
        {
899
 
                g_warning(x.what());
 
899
                g_warning("%s", x.what());
900
900
        }
901
901
}