[kazehakase-svn] [3624] rename.

アーカイブの一覧に戻る

svnno****@sourc***** svnno****@sourc*****
Wed Feb 11 19:23:47 JST 2009


Revision: 3624
          http://svn.sourceforge.jp/view?root=kazehakase&view=rev&rev=3624
Author:   ikezoe
Date:     2009-02-11 19:23:47 +0900 (Wed, 11 Feb 2009)

Log Message:
-----------
rename.

Modified Paths:
--------------
    kazehakase/trunk/module/embed/gecko/Makefile.am

Added Paths:
-----------
    kazehakase/trunk/module/embed/gecko/kz-gecko-embed-module.c

Removed Paths:
-------------
    kazehakase/trunk/module/embed/gecko/kz-gecko-embed-module.cpp

Modified: kazehakase/trunk/module/embed/gecko/Makefile.am
===================================================================
--- kazehakase/trunk/module/embed/gecko/Makefile.am	2009-02-11 06:02:04 UTC (rev 3623)
+++ kazehakase/trunk/module/embed/gecko/Makefile.am	2009-02-11 10:23:47 UTC (rev 3624)
@@ -72,7 +72,7 @@
 	-I$(top_srcdir)/module/embed/gecko
 
 gecko_la_SOURCES = \
-	kz-gecko-embed-module.cpp \
+	kz-gecko-embed-module.c \
 	kz-gecko-embed.cpp kz-gecko-embed.h \
 	kz-gecko-single.cpp kz-gecko-single.h \
 	GtkPromptService.cpp GtkPromptService.h \

Copied: kazehakase/trunk/module/embed/gecko/kz-gecko-embed-module.c (from rev 3620, kazehakase/trunk/module/embed/gecko/kz-gecko-embed-module.cpp)
===================================================================
--- kazehakase/trunk/module/embed/gecko/kz-gecko-embed-module.c	                        (rev 0)
+++ kazehakase/trunk/module/embed/gecko/kz-gecko-embed-module.c	2009-02-11 10:23:47 UTC (rev 3624)
@@ -0,0 +1,70 @@
+// -*- Mode: C++; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
+
+//
+//  Copyright (C) 2007 Hiroyuki Ikezoe
+//
+//  This program is free software; you can redistribute it and/or modify
+//  it under the terms of the GNU General Public License as published by
+//  the Free Software Foundation; either version 2, or (at your option)
+//  any later version.
+//
+//  This program is distributed in the hope that it will be useful,
+//  but WITHOUT ANY WARRANTY; without even the implied warranty of
+//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+//  GNU General Public License for more details.
+//
+//  You should have received a copy of the GNU General Public License
+//  along with this program; if not, write to the Free Software
+//  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+//
+
+#include "kz-module-impl.h"
+
+#include "kz-gecko-embed.h"
+#include "kz-gecko-single.h"
+#include "mozilla-prefs.h"
+#include "mozilla.h"
+
+static KzGeckoSingle *gecko_single = NULL;
+
+G_MODULE_EXPORT void
+KZ_MODULE_IMPL_INIT (GTypeModule *module)
+{
+#ifdef XPCOM_GLUE
+	xulrunner_init();
+#else
+	gtk_moz_embed_set_comp_path(MOZILLA_HOME);
+#endif
+	mozilla_prefs_init();
+
+	gtk_moz_embed_push_startup();
+
+	gecko_single = kz_gecko_single_new(kz_app_get());
+
+	kz_gecko_embed_register_type(module);
+}
+
+G_MODULE_EXPORT void
+KZ_MODULE_IMPL_EXIT (void)
+{
+	g_object_unref(gecko_single);
+	gtk_moz_embed_pop_startup();
+}
+
+G_MODULE_EXPORT GObject *
+KZ_MODULE_IMPL_INSTANTIATE (const gchar *first_property,
+			    va_list      var_args)
+{
+	KzGeckoEmbed *kzembed;
+
+	kzembed = KZ_GECKO_EMBED(g_object_new_valist(KZ_TYPE_GECKO_EMBED,
+						     first_property, var_args));
+	return G_OBJECT(kzembed);
+}
+
+G_MODULE_EXPORT const gchar *
+KZ_MODULE_IMPL_GET_NAME (void)
+{
+	return GECKO_VERSION;
+}
+


Property changes on: kazehakase/trunk/module/embed/gecko/kz-gecko-embed-module.c
___________________________________________________________________
Added: svn:mergeinfo
   + 

Deleted: kazehakase/trunk/module/embed/gecko/kz-gecko-embed-module.cpp
===================================================================
--- kazehakase/trunk/module/embed/gecko/kz-gecko-embed-module.cpp	2009-02-11 06:02:04 UTC (rev 3623)
+++ kazehakase/trunk/module/embed/gecko/kz-gecko-embed-module.cpp	2009-02-11 10:23:47 UTC (rev 3624)
@@ -1,70 +0,0 @@
-// -*- Mode: C++; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
-
-//
-//  Copyright (C) 2007 Hiroyuki Ikezoe
-//
-//  This program is free software; you can redistribute it and/or modify
-//  it under the terms of the GNU General Public License as published by
-//  the Free Software Foundation; either version 2, or (at your option)
-//  any later version.
-//
-//  This program is distributed in the hope that it will be useful,
-//  but WITHOUT ANY WARRANTY; without even the implied warranty of
-//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-//  GNU General Public License for more details.
-//
-//  You should have received a copy of the GNU General Public License
-//  along with this program; if not, write to the Free Software
-//  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
-//
-
-#include "kz-module-impl.h"
-
-#include "kz-gecko-embed.h"
-#include "kz-gecko-single.h"
-#include "mozilla-prefs.h"
-#include "mozilla.h"
-
-static KzGeckoSingle *gecko_single = NULL;
-
-G_MODULE_EXPORT void
-KZ_MODULE_IMPL_INIT (GTypeModule *module)
-{
-#ifdef XPCOM_GLUE
-	xulrunner_init();
-#else
-	gtk_moz_embed_set_comp_path(MOZILLA_HOME);
-#endif
-	mozilla_prefs_init();
-
-	gtk_moz_embed_push_startup();
-
-	gecko_single = kz_gecko_single_new(kz_app_get());
-
-	kz_gecko_embed_register_type(module);
-}
-
-G_MODULE_EXPORT void
-KZ_MODULE_IMPL_EXIT (void)
-{
-	g_object_unref(gecko_single);
-	gtk_moz_embed_pop_startup();
-}
-
-G_MODULE_EXPORT GObject *
-KZ_MODULE_IMPL_INSTANTIATE (const gchar *first_property,
-			    va_list      var_args)
-{
-	KzGeckoEmbed *kzembed;
-
-	kzembed = KZ_GECKO_EMBED(g_object_new_valist(KZ_TYPE_GECKO_EMBED,
-						     first_property, var_args));
-	return G_OBJECT(kzembed);
-}
-
-G_MODULE_EXPORT const gchar *
-KZ_MODULE_IMPL_GET_NAME (void)
-{
-	return GECKO_VERSION;
-}
-




More information about the Kazehakase-cvs mailing list
アーカイブの一覧に戻る