[gnome-games] [lightsoff] Standardize on capital letters for JS files



commit 8365382bdcf8f63e7661b808db7c9929f4eb45d0
Author: Tim Horton <hortont424 gmail com>
Date:   Sat Jul 11 22:40:12 2009 -0400

    [lightsoff] Standardize on capital letters for JS files

 configure.in                                    |    2 +-
 lightsoff/Makefile.am                           |    8 ++++----
 lightsoff/data/{main-window.ui => lightsoff.ui} |    0
 lightsoff/src/{path.js.in => Path.js.in}        |    0
 lightsoff/src/main.js                           |    2 +-
 5 files changed, 6 insertions(+), 6 deletions(-)
---
diff --git a/configure.in b/configure.in
index 31db02f..f838ad8 100644
--- a/configure.in
+++ b/configure.in
@@ -1261,7 +1261,7 @@ lightsoff/Makefile
 lightsoff/help/Makefile
 lightsoff/src/lightsoff
 lightsoff/lightsoff.desktop.in
-lightsoff/src/path.js
+lightsoff/src/Path.js
 lightsoff/data/themes/Makefile
 lightsoff/data/themes/tango/Makefile
 lightsoff/data/themes/up/Makefile
diff --git a/lightsoff/Makefile.am b/lightsoff/Makefile.am
index a370c04..f3ad262 100644
--- a/lightsoff/Makefile.am
+++ b/lightsoff/Makefile.am
@@ -7,12 +7,12 @@ lightsoff_DATA = \
 	src/Board.js \
 	src/Light.js \
 	src/main.js \
-	src/path.js \
+	src/Path.js \
 	src/Game.js \
 	src/LED.js \
 	src/Settings.js \
 	data/settings.ui \
-	data/main-window.ui \
+	data/lightsoff.ui \
 	src/ThemeLoader.js
 
 bin_SCRIPTS = \
@@ -35,12 +35,12 @@ EXTRA_DIST = \
 	src/Board.js \
 	src/Light.js \
 	src/main.js \
-	src/path.js.in \
+	src/Path.js.in \
 	src/Game.js \
 	src/LED.js \
 	src/Settings.js \
 	data/settings.ui \
-	data/main-window.ui \
+	data/lightsoff.ui \
 	src/ThemeLoader.js
 
 install-schemas-local: $(schema_DATA)
diff --git a/lightsoff/data/main-window.ui b/lightsoff/data/lightsoff.ui
similarity index 100%
rename from lightsoff/data/main-window.ui
rename to lightsoff/data/lightsoff.ui
diff --git a/lightsoff/src/path.js.in b/lightsoff/src/Path.js.in
similarity index 100%
rename from lightsoff/src/path.js.in
rename to lightsoff/src/Path.js.in
diff --git a/lightsoff/src/main.js b/lightsoff/src/main.js
index 67c1ccb..235680f 100755
--- a/lightsoff/src/main.js
+++ b/lightsoff/src/main.js
@@ -42,7 +42,7 @@ handlers = {
 };
 
 b = new Gtk.Builder();
-b.add_from_file(file_prefix + "/main-window.ui");
+b.add_from_file(file_prefix + "/lightsoff.ui");
 b.connect_signals(handlers);
 
 var window = b.get_object("game_window");



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