[five-or-more] Rename glines.[ch] to five-or-more.[ch]



commit 4811c9e430cec9a443512285f8b0e4794a1b6ddb
Author: Michael Catanzaro <mcatanzaro gnome org>
Date:   Sun Jul 6 07:57:02 2014 -0500

    Rename glines.[ch] to five-or-more.[ch]

 po/POTFILES.in                   |    2 +-
 src/Makefile.am                  |    6 +++---
 src/{glines.c => five-or-more.c} |    8 ++++----
 src/{glines.h => five-or-more.h} |    0
 4 files changed, 8 insertions(+), 8 deletions(-)
---
diff --git a/po/POTFILES.in b/po/POTFILES.in
index a0d9513..9edc91f 100644
--- a/po/POTFILES.in
+++ b/po/POTFILES.in
@@ -7,5 +7,5 @@ data/five-or-more.desktop.in
 [type: gettext/glade]data/five-or-more.ui
 [type: gettext/glade]data/menu.ui
 data/org.gnome.five-or-more.gschema.xml
+src/five-or-more.c
 src/games-scores-dialog.c
-src/glines.c
diff --git a/src/Makefile.am b/src/Makefile.am
index 2065ef2..12edd52 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -1,6 +1,8 @@
 bin_PROGRAMS = five-or-more
 
 five_or_more_SOURCES = \
+       five-or-more.c  \
+       five-or-more.h  \
        games-file-list.c       \
        games-file-list.h       \
        games-gridframe.c       \
@@ -14,9 +16,7 @@ five_or_more_SOURCES =        \
        games-scores-dialog.c   \
        games-scores-dialog.h   \
        games-scores-backend.c  \
-       games-scores-backend.h \
-       glines.c        \
-       glines.h
+       games-scores-backend.h
 
 five_or_more_CPPFLAGS = \
        -I$(top_srcdir) \
diff --git a/src/glines.c b/src/five-or-more.c
similarity index 99%
rename from src/glines.c
rename to src/five-or-more.c
index b729559..6fbed7e 100644
--- a/src/glines.c
+++ b/src/five-or-more.c
@@ -36,7 +36,7 @@
 #include <gdk-pixbuf/gdk-pixbuf.h>
 #include <gdk/gdkkeysyms.h>
 
-#include "glines.h"
+#include "five-or-more.h"
 #include "games-file-list.h"
 #include "games-preimage.h"
 #include "games-gridframe.h"
@@ -1072,7 +1072,7 @@ animate (gpointer gp)
   GtkWidget *widget = GTK_WIDGET (gp);
   int x, y;
   int newactive = 0;
-    
+
   x = active % hfieldsize;
   y = active / hfieldsize;
 
@@ -1506,7 +1506,7 @@ window_configure_event_cb (GtkWidget *widget, GdkEventConfigure *event)
     window_width = event->width;
     window_height = event->height;
   }
-  
+
   return FALSE;
 }
 
@@ -1687,7 +1687,7 @@ main (int argc, char *argv[])
   g_signal_connect (application, "activate", G_CALLBACK (activate_cb), NULL);
   g_signal_connect (application, "shutdown", G_CALLBACK (shutdown_cb), NULL);
 
-  status = g_application_run (G_APPLICATION (application), argc, argv);  
+  status = g_application_run (G_APPLICATION (application), argc, argv);
 
   if (ball_preimage)
     g_object_unref (ball_preimage);
diff --git a/src/glines.h b/src/five-or-more.h
similarity index 100%
rename from src/glines.h
rename to src/five-or-more.h


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]