X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=synfig-studio%2Ftrunk%2Fsrc%2Fgtkmm%2Fabout.cpp;h=ebf7916b5a9ddfc55f590571d7b53081a0c52c0d;hb=e8a065f2385c219c511b57dac52786120bfa097d;hp=819ed63e7cbc7f08c50e7aa565a531ea742dac65;hpb=3a3c4bca3a17137bec5d7960560934b91ef4146e;p=synfig.git diff --git a/synfig-studio/trunk/src/gtkmm/about.cpp b/synfig-studio/trunk/src/gtkmm/about.cpp index 819ed63..ebf7916 100644 --- a/synfig-studio/trunk/src/gtkmm/about.cpp +++ b/synfig-studio/trunk/src/gtkmm/about.cpp @@ -1,5 +1,5 @@ /*! ======================================================================== -** Sinfg +** Synfig ** Template File ** $Id: about.cpp,v 1.2 2005/01/13 21:11:16 darco Exp $ ** @@ -38,7 +38,7 @@ #include #include -#include +#include #include "about.h" #include "app.h" @@ -53,7 +53,7 @@ using namespace studio; #ifndef VERSION #define VERSION "unknown" -#define PACKAGE "sinfgstudio" +#define PACKAGE "synfigstudio" #endif #ifdef WIN32 @@ -80,7 +80,7 @@ extern const guint gtk_interface_age; /* === P R O C E D U R E S ================================================= */ -class studio::AboutProgress : public sinfg::ProgressCallback +class studio::AboutProgress : public synfig::ProgressCallback { About &about; @@ -176,7 +176,7 @@ About::About(): Logo->set_padding(0,0); // Create the Copyright Label - Gtk::Label *CopyrightLabel = manage(new class Gtk::Label(SINFG_COPYRIGHT)); + Gtk::Label *CopyrightLabel = manage(new class Gtk::Label(SYNFIG_COPYRIGHT)); CopyrightLabel->set_size_request(image_w,24); CopyrightLabel->set_alignment(0.5,0.5); CopyrightLabel->set_padding(0,0); @@ -195,8 +195,8 @@ About::About(): // Set the version label to contain the correct information string ver; ver+="Version "VERSION" ("__DATE__" "__TIME__")\n"; - ver+="Using SINFG "; - ver+=sinfg::get_version(); + ver+="Using SYNFIG "; + ver+=synfig::get_version(); #ifdef __GNUC__ ver+=strprintf(" and GNU G++ %d.%d.%d",__GNUC__,__GNUC_MINOR__,__GNUC_PATCHLEVEL__); #endif @@ -240,7 +240,7 @@ About::About(): fixed1->put(*tasklabel, 0, image_h); // Set up the parameters for this pop-up window - set_title("Sinfg Studio "VERSION); + set_title("Synfig Studio "VERSION); set_modal(false); property_window_position().set_value(Gtk::WIN_POS_CENTER); set_resizable(false); @@ -282,7 +282,7 @@ About::set_can_self_destruct(bool x) CloseButton->hide(); } -sinfg::ProgressCallback * +synfig::ProgressCallback * About::get_callback() { return cb;