aboutsummaryrefslogtreecommitdiffstats
path: root/shell
diff options
context:
space:
mode:
authorMiguel de Icaza <miguel@ximian.com>2001-01-12 15:08:33 +0800
committerMiguel de Icaza <miguel@src.gnome.org>2001-01-12 15:08:33 +0800
commit5aa11827ce3c662631be7e0fd681394c7f179207 (patch)
tree9a1fd79cf48d8226f0a9d25cef05d73191260b34 /shell
parent4cd709cd1801bba09bca634389b6232a192ac009 (diff)
downloadgsoc2013-evolution-5aa11827ce3c662631be7e0fd681394c7f179207.tar
gsoc2013-evolution-5aa11827ce3c662631be7e0fd681394c7f179207.tar.gz
gsoc2013-evolution-5aa11827ce3c662631be7e0fd681394c7f179207.tar.bz2
gsoc2013-evolution-5aa11827ce3c662631be7e0fd681394c7f179207.tar.lz
gsoc2013-evolution-5aa11827ce3c662631be7e0fd681394c7f179207.tar.xz
gsoc2013-evolution-5aa11827ce3c662631be7e0fd681394c7f179207.tar.zst
gsoc2013-evolution-5aa11827ce3c662631be7e0fd681394c7f179207.zip
Remove "window" from the moniker path.
2001-01-12 Miguel de Icaza <miguel@ximian.com> * e-shell-view-menu.c (command_new_mail_message): Remove "window" from the moniker path. * e-splash.c (e_splash_construct): Make the spalsh screen a toplevel instead of a popup. svn path=/trunk/; revision=7440
Diffstat (limited to 'shell')
-rw-r--r--shell/ChangeLog8
-rw-r--r--shell/e-shell-view-menu.c2
-rw-r--r--shell/e-splash.c2
3 files changed, 10 insertions, 2 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog
index a31dcf5659..1052783e55 100644
--- a/shell/ChangeLog
+++ b/shell/ChangeLog
@@ -1,3 +1,11 @@
+2001-01-12 Miguel de Icaza <miguel@ximian.com>
+
+ * e-shell-view-menu.c (command_new_mail_message): Remove "window"
+ from the moniker path.
+
+ * e-splash.c (e_splash_construct): Make the spalsh screen a
+ toplevel instead of a popup.
+
2001-01-11 Dan Winship <danw@ximian.com>
* e-shell-view.c (show_existing_view): Remove the "Already have
diff --git a/shell/e-shell-view-menu.c b/shell/e-shell-view-menu.c
index d5b13b9108..f76d76e227 100644
--- a/shell/e-shell-view-menu.c
+++ b/shell/e-shell-view-menu.c
@@ -396,7 +396,7 @@ command_new_mail_message (BonoboUIComponent *uih,
CORBA_exception_init (&ev);
object = bonobo_get_object (
- "OAFIID:GNOME_Evolution_Mail_Composer!window!visible=1",
+ "OAFIID:GNOME_Evolution_Mail_Composer!visible=1",
"Bonobo/Unknown", &ev);
CORBA_exception_free (&ev);
diff --git a/shell/e-splash.c b/shell/e-splash.c
index f8fe74c71d..33f5412455 100644
--- a/shell/e-splash.c
+++ b/shell/e-splash.c
@@ -317,7 +317,7 @@ e_splash_construct (ESplash *splash,
gtk_signal_connect (GTK_OBJECT (splash), "button-press-event",
GTK_SIGNAL_FUNC (button_press_event), splash);
- gtk_object_set (GTK_OBJECT (splash), "type", GTK_WINDOW_POPUP, NULL);
+ gtk_object_set (GTK_OBJECT (splash), "type", GTK_WINDOW_TOPLEVEL, NULL);
gtk_window_set_position (GTK_WINDOW (splash), GTK_WIN_POS_CENTER);
gtk_window_set_policy (GTK_WINDOW (splash), FALSE, FALSE, FALSE);
gtk_window_set_default_size (GTK_WINDOW (splash), image_width, image_height);