gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] r1362 - in gnunet-gtk/src: common plugins/about plugins/fs


From: grothoff
Subject: [GNUnet-SVN] r1362 - in gnunet-gtk/src: common plugins/about plugins/fs plugins/fs/extensions
Date: Sat, 9 Jul 2005 11:07:48 -0700 (PDT)

Author: grothoff
Date: 2005-07-09 11:07:40 -0700 (Sat, 09 Jul 2005)
New Revision: 1362

Modified:
   gnunet-gtk/src/common/helper.c
   gnunet-gtk/src/plugins/about/about.c
   gnunet-gtk/src/plugins/fs/collection.c
   gnunet-gtk/src/plugins/fs/extensions/musicinsert.c
   gnunet-gtk/src/plugins/fs/namespace.c
   gnunet-gtk/src/plugins/fs/search.c
   gnunet-gtk/src/plugins/fs/upload.c
Log:
docs say to pass domain name

Modified: gnunet-gtk/src/common/helper.c
===================================================================
--- gnunet-gtk/src/common/helper.c      2005-07-09 17:59:32 UTC (rev 1361)
+++ gnunet-gtk/src/common/helper.c      2005-07-09 18:07:40 UTC (rev 1362)
@@ -376,11 +376,11 @@
 
   mainXML = glade_xml_new(gladeFile,
                          "mainWindow",
-                         NULL);
+                         PACKAGE_NAME);
   statusXML
     = glade_xml_new(getGladeFileName(),
                    "statusWindow", 
-                   NULL);
+                   PACKAGE_NAME);
   infoWindow
     = glade_xml_get_widget(statusXML,
                           "statusWindow");

Modified: gnunet-gtk/src/plugins/about/about.c
===================================================================
--- gnunet-gtk/src/plugins/about/about.c        2005-07-09 17:59:32 UTC (rev 
1361)
+++ gnunet-gtk/src/plugins/about/about.c        2005-07-09 18:07:40 UTC (rev 
1362)
@@ -40,7 +40,7 @@
   axml
     = glade_xml_new(getGladeFileName(),
                    "aboutDialog", 
-                   NULL);
+                   PACKAGE_NAME);
   ad
     = glade_xml_get_widget(axml,
                           "aboutDialog");

Modified: gnunet-gtk/src/plugins/fs/collection.c
===================================================================
--- gnunet-gtk/src/plugins/fs/collection.c      2005-07-09 17:59:32 UTC (rev 
1361)
+++ gnunet-gtk/src/plugins/fs/collection.c      2005-07-09 18:07:40 UTC (rev 
1362)
@@ -107,7 +107,7 @@
   metaXML
     = glade_xml_new(getGladeFileName(),
                    "createCollectionDialog",
-                   NULL);
+                   PACKAGE_NAME);
   connectGladeWithPlugins(metaXML);
   dialog = glade_xml_get_widget(metaXML,
                                "createCollectionDialog");

Modified: gnunet-gtk/src/plugins/fs/extensions/musicinsert.c
===================================================================
--- gnunet-gtk/src/plugins/fs/extensions/musicinsert.c  2005-07-09 17:59:32 UTC 
(rev 1361)
+++ gnunet-gtk/src/plugins/fs/extensions/musicinsert.c  2005-07-09 18:07:40 UTC 
(rev 1362)
@@ -79,7 +79,7 @@
 {
        musicinsertXML =
                glade_xml_new (MUSICINSERTXMLFILE, "musicinsertdialog",
-                              NULL);
+                              PACKAGE_NAME);
        glade_xml_signal_autoconnect (musicinsertXML);
 /* libglade*/
 

Modified: gnunet-gtk/src/plugins/fs/namespace.c
===================================================================
--- gnunet-gtk/src/plugins/fs/namespace.c       2005-07-09 17:59:32 UTC (rev 
1361)
+++ gnunet-gtk/src/plugins/fs/namespace.c       2005-07-09 18:07:40 UTC (rev 
1362)
@@ -62,7 +62,7 @@
   namespaceXML
     = glade_xml_new(getGladeFileName(),
                    "namespaceContentFrame", 
-                   NULL);
+                   PACKAGE_NAME);
   connectGladeWithPlugins(namespaceXML);
   window = glade_xml_get_widget(namespaceXML,
                                "namespaceContentFrame");
@@ -485,7 +485,7 @@
   metaXML
     = glade_xml_new(getGladeFileName(),
                    "namespaceMetaDataDialog",
-                   NULL);
+                   PACKAGE_NAME);
   connectGladeWithPlugins(metaXML);
   dialog = glade_xml_get_widget(metaXML,
                                "namespaceMetaDataDialog");
@@ -866,7 +866,7 @@
   metaXML
     = glade_xml_new(getGladeFileName(),
                    "namespaceMetaDataDialog",
-                   NULL);
+                   PACKAGE_NAME);
   connectGladeWithPlugins(metaXML);
   dialog = glade_xml_get_widget(metaXML,
                                "namespaceMetaDataDialog");

Modified: gnunet-gtk/src/plugins/fs/search.c
===================================================================
--- gnunet-gtk/src/plugins/fs/search.c  2005-07-09 17:59:32 UTC (rev 1361)
+++ gnunet-gtk/src/plugins/fs/search.c  2005-07-09 18:07:40 UTC (rev 1362)
@@ -375,7 +375,7 @@
   searchXML
     = glade_xml_new(getGladeFileName(),
                    "searchResultsFrame", 
-                   NULL);
+                   PACKAGE_NAME);
   connectGladeWithPlugins(searchXML);
   window = glade_xml_get_widget(searchXML,
                               "searchResultsFrame");

Modified: gnunet-gtk/src/plugins/fs/upload.c
===================================================================
--- gnunet-gtk/src/plugins/fs/upload.c  2005-07-09 17:59:32 UTC (rev 1361)
+++ gnunet-gtk/src/plugins/fs/upload.c  2005-07-09 18:07:40 UTC (rev 1362)
@@ -417,7 +417,7 @@
   metaXML
     = glade_xml_new(getGladeFileName(),
                    "metaDataDialog",
-                   NULL);
+                   PACKAGE_NAME);
   connectGladeWithPlugins(metaXML);
   dialog = glade_xml_get_widget(metaXML,
                                "metaDataDialog");
@@ -686,7 +686,7 @@
   uploadXML
     = glade_xml_new(getGladeFileName(),
                    "uploadfilechooserdialog",
-                   NULL);
+                   PACKAGE_NAME);
   connectGladeWithPlugins(uploadXML);
   dialog = glade_xml_get_widget(uploadXML,
                                "uploadfilechooserdialog");





reply via email to

[Prev in Thread] Current Thread [Next in Thread]