aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2005-07-09 18:07:40 +0000
committerChristian Grothoff <christian@grothoff.org>2005-07-09 18:07:40 +0000
commitb490bfb96d9e2aa09e95d89bd5a3980fe536a6bc (patch)
tree27b31d2eb0a8aad15900cdd281ce3d929944773c
parent97048b7746e1f7dc9191fb02e0c960fa40083448 (diff)
downloadgnunet-gtk-b490bfb96d9e2aa09e95d89bd5a3980fe536a6bc.tar.gz
gnunet-gtk-b490bfb96d9e2aa09e95d89bd5a3980fe536a6bc.zip
docs say to pass domain name
-rw-r--r--src/common/helper.c4
-rw-r--r--src/plugins/about/about.c2
-rw-r--r--src/plugins/fs/collection.c2
-rw-r--r--src/plugins/fs/extensions/musicinsert.c2
-rw-r--r--src/plugins/fs/namespace.c6
-rw-r--r--src/plugins/fs/search.c2
-rw-r--r--src/plugins/fs/upload.c4
7 files changed, 11 insertions, 11 deletions
diff --git a/src/common/helper.c b/src/common/helper.c
index 78b74e58..73dc2dd2 100644
--- a/src/common/helper.c
+++ b/src/common/helper.c
@@ -376,11 +376,11 @@ void initGNUnetGTKCommon() {
376 376
377 mainXML = glade_xml_new(gladeFile, 377 mainXML = glade_xml_new(gladeFile,
378 "mainWindow", 378 "mainWindow",
379 NULL); 379 PACKAGE_NAME);
380 statusXML 380 statusXML
381 = glade_xml_new(getGladeFileName(), 381 = glade_xml_new(getGladeFileName(),
382 "statusWindow", 382 "statusWindow",
383 NULL); 383 PACKAGE_NAME);
384 infoWindow 384 infoWindow
385 = glade_xml_get_widget(statusXML, 385 = glade_xml_get_widget(statusXML,
386 "statusWindow"); 386 "statusWindow");
diff --git a/src/plugins/about/about.c b/src/plugins/about/about.c
index 74163aad..3e6a3c01 100644
--- a/src/plugins/about/about.c
+++ b/src/plugins/about/about.c
@@ -40,7 +40,7 @@ void on_about_clicked(GtkWidget *dummy,
40 axml 40 axml
41 = glade_xml_new(getGladeFileName(), 41 = glade_xml_new(getGladeFileName(),
42 "aboutDialog", 42 "aboutDialog",
43 NULL); 43 PACKAGE_NAME);
44 ad 44 ad
45 = glade_xml_get_widget(axml, 45 = glade_xml_get_widget(axml,
46 "aboutDialog"); 46 "aboutDialog");
diff --git a/src/plugins/fs/collection.c b/src/plugins/fs/collection.c
index 6491e279..f7bf5793 100644
--- a/src/plugins/fs/collection.c
+++ b/src/plugins/fs/collection.c
@@ -107,7 +107,7 @@ void createCollection_clicked(GtkWidget * dummy1,
107 metaXML 107 metaXML
108 = glade_xml_new(getGladeFileName(), 108 = glade_xml_new(getGladeFileName(),
109 "createCollectionDialog", 109 "createCollectionDialog",
110 NULL); 110 PACKAGE_NAME);
111 connectGladeWithPlugins(metaXML); 111 connectGladeWithPlugins(metaXML);
112 dialog = glade_xml_get_widget(metaXML, 112 dialog = glade_xml_get_widget(metaXML,
113 "createCollectionDialog"); 113 "createCollectionDialog");
diff --git a/src/plugins/fs/extensions/musicinsert.c b/src/plugins/fs/extensions/musicinsert.c
index fedf5396..317f3f9c 100644
--- a/src/plugins/fs/extensions/musicinsert.c
+++ b/src/plugins/fs/extensions/musicinsert.c
@@ -79,7 +79,7 @@ show_musicinsertdialog ()
79{ 79{
80 musicinsertXML = 80 musicinsertXML =
81 glade_xml_new (MUSICINSERTXMLFILE, "musicinsertdialog", 81 glade_xml_new (MUSICINSERTXMLFILE, "musicinsertdialog",
82 NULL); 82 PACKAGE_NAME);
83 glade_xml_signal_autoconnect (musicinsertXML); 83 glade_xml_signal_autoconnect (musicinsertXML);
84/* libglade*/ 84/* libglade*/
85 85
diff --git a/src/plugins/fs/namespace.c b/src/plugins/fs/namespace.c
index 24b64adc..aeaf0a79 100644
--- a/src/plugins/fs/namespace.c
+++ b/src/plugins/fs/namespace.c
@@ -62,7 +62,7 @@ static GtkWidget * makeNamespaceFrame(GtkWidget ** treeview,
62 namespaceXML 62 namespaceXML
63 = glade_xml_new(getGladeFileName(), 63 = glade_xml_new(getGladeFileName(),
64 "namespaceContentFrame", 64 "namespaceContentFrame",
65 NULL); 65 PACKAGE_NAME);
66 connectGladeWithPlugins(namespaceXML); 66 connectGladeWithPlugins(namespaceXML);
67 window = glade_xml_get_widget(namespaceXML, 67 window = glade_xml_get_widget(namespaceXML,
68 "namespaceContentFrame"); 68 "namespaceContentFrame");
@@ -485,7 +485,7 @@ void create_namespace_clicked(GtkWidget * dummy1,
485 metaXML 485 metaXML
486 = glade_xml_new(getGladeFileName(), 486 = glade_xml_new(getGladeFileName(),
487 "namespaceMetaDataDialog", 487 "namespaceMetaDataDialog",
488 NULL); 488 PACKAGE_NAME);
489 connectGladeWithPlugins(metaXML); 489 connectGladeWithPlugins(metaXML);
490 dialog = glade_xml_get_widget(metaXML, 490 dialog = glade_xml_get_widget(metaXML,
491 "namespaceMetaDataDialog"); 491 "namespaceMetaDataDialog");
@@ -866,7 +866,7 @@ void on_namespaceInsertButton_clicked(GtkWidget * dummy1,
866 metaXML 866 metaXML
867 = glade_xml_new(getGladeFileName(), 867 = glade_xml_new(getGladeFileName(),
868 "namespaceMetaDataDialog", 868 "namespaceMetaDataDialog",
869 NULL); 869 PACKAGE_NAME);
870 connectGladeWithPlugins(metaXML); 870 connectGladeWithPlugins(metaXML);
871 dialog = glade_xml_get_widget(metaXML, 871 dialog = glade_xml_get_widget(metaXML,
872 "namespaceMetaDataDialog"); 872 "namespaceMetaDataDialog");
diff --git a/src/plugins/fs/search.c b/src/plugins/fs/search.c
index 9d3c91e1..82646fde 100644
--- a/src/plugins/fs/search.c
+++ b/src/plugins/fs/search.c
@@ -375,7 +375,7 @@ static GtkWidget * makeResultFrame(GtkWidget ** treeview,
375 searchXML 375 searchXML
376 = glade_xml_new(getGladeFileName(), 376 = glade_xml_new(getGladeFileName(),
377 "searchResultsFrame", 377 "searchResultsFrame",
378 NULL); 378 PACKAGE_NAME);
379 connectGladeWithPlugins(searchXML); 379 connectGladeWithPlugins(searchXML);
380 window = glade_xml_get_widget(searchXML, 380 window = glade_xml_get_widget(searchXML,
381 "searchResultsFrame"); 381 "searchResultsFrame");
diff --git a/src/plugins/fs/upload.c b/src/plugins/fs/upload.c
index e0306469..9ff8ca1e 100644
--- a/src/plugins/fs/upload.c
+++ b/src/plugins/fs/upload.c
@@ -417,7 +417,7 @@ void on_fsinsertuploadbutton_clicked(gpointer dummy,
417 metaXML 417 metaXML
418 = glade_xml_new(getGladeFileName(), 418 = glade_xml_new(getGladeFileName(),
419 "metaDataDialog", 419 "metaDataDialog",
420 NULL); 420 PACKAGE_NAME);
421 connectGladeWithPlugins(metaXML); 421 connectGladeWithPlugins(metaXML);
422 dialog = glade_xml_get_widget(metaXML, 422 dialog = glade_xml_get_widget(metaXML,
423 "metaDataDialog"); 423 "metaDataDialog");
@@ -686,7 +686,7 @@ static char * selectFile() {
686 uploadXML 686 uploadXML
687 = glade_xml_new(getGladeFileName(), 687 = glade_xml_new(getGladeFileName(),
688 "uploadfilechooserdialog", 688 "uploadfilechooserdialog",
689 NULL); 689 PACKAGE_NAME);
690 connectGladeWithPlugins(uploadXML); 690 connectGladeWithPlugins(uploadXML);
691 dialog = glade_xml_get_widget(uploadXML, 691 dialog = glade_xml_get_widget(uploadXML,
692 "uploadfilechooserdialog"); 692 "uploadfilechooserdialog");