summaryrefslogtreecommitdiff
path: root/mate-about/mate-about.h
diff options
context:
space:
mode:
Diffstat (limited to 'mate-about/mate-about.h')
-rw-r--r--mate-about/mate-about.h23
1 files changed, 11 insertions, 12 deletions
diff --git a/mate-about/mate-about.h b/mate-about/mate-about.h
index fdbb144..86a9812 100644
--- a/mate-about/mate-about.h
+++ b/mate-about/mate-about.h
@@ -23,17 +23,15 @@
#include <gtk/gtk.h>
#include <libintl.h> // for gettext
-
-
#include <config.h> // autogenerated by ./configure
#ifdef USE_UNIQUE
#include <unique/unique.h>
#endif
-//mate-about
+//class mate_about
//{
- const char* program_name = "MATE Desktop Environment"; // MATE @PACKAGE_NAME@
+ const char* program_name = "MATE Desktop Environment";
const char* version = PACKAGE_VERSION;
const char* icon = "desktop";
const char* website = "http://www.matsusoft.com.ar/projects/mate/";
@@ -42,11 +40,9 @@
"Copyright © 1997-2011 GNOME developers\n"
"Copyright © 2011 Perberos"; // egoista!
- /**
- * Incrementar el valor de comments_count si se desea agregar nuevos valores
+ /* Incrementar el valor de comments_count si se desea agregar nuevos valores
* en comments[]. Porque, este valor es usado en un random para obtener el
- * indice de la cadena.
- */
+ * indice de la cadena. */
const int comments_count = 6;
const char* comments_array[] = {
"MATE also includes a complete development platform for applications "
@@ -609,22 +605,25 @@
};
// documentacion
- const gchar* documenters[] = {
+ const char* documenters[] = {
"...", // TODO: fillme
NULL
};
// artistas
- const gchar* artists[] = {
+ const char* artists[] = {
"...", // TODO: fillme
NULL
};
// widget de la unica ventana
- GtkWidget* mate_about_dialog = FALSE;
+ GtkAboutDialog* mate_about_dialog = FALSE;
// libunique thing
#ifdef USE_UNIQUE
- UniqueApp* mate_about_application;
+ //extern UniqueApp* unique;
+ //UniqueApp* unique = NULL;
+ extern UniqueApp* mate_about_application;
+ UniqueApp* mate_about_application = NULL;
#elif GTK_CHECK_VERSION(3, 0, 0)
GtkApplication* mate_about_application;
#elif GLIB_CHECK_VERSION(2, 26, 0)