Fixed a couple of warnings.

svn path=/trunk/; revision=6470
This commit is contained in:
Ettore Perazzoli
2000-11-07 00:21:41 +00:00
parent 381e202936
commit 6ccc87047c
2 changed files with 11 additions and 5 deletions

View File

@ -1,3 +1,9 @@
2000-11-06 Ettore Perazzoli <ettore@helixcode.com>
* evolution-shell-view.c (impl_ShellView_change_current_view):
Constified @uri.
(impl_ShellView_set_title): Constified @title.
2000-11-06 Ettore Perazzoli <ettore@helixcode.com>
* e-shell.c: New member `crash_type_names' in `EShellPrivate'.

View File

@ -100,7 +100,7 @@ impl_ShellView_unset_message (PortableServer_Servant servant,
static void
impl_ShellView_change_current_view (PortableServer_Servant servant,
CORBA_char *uri,
const CORBA_char *uri,
CORBA_Environment *ev)
{
BonoboObject *bonobo_object;
@ -112,7 +112,7 @@ impl_ShellView_change_current_view (PortableServer_Servant servant,
static void
impl_ShellView_set_title (PortableServer_Servant servant,
CORBA_char *title,
const CORBA_char *title,
CORBA_Environment *ev)
{
BonoboObject *bonobo_object;
@ -152,10 +152,10 @@ corba_class_init (void)
base_epv->default_POA = NULL;
epv = g_new0 (POA_Evolution_ShellView__epv, 1);
epv->set_message = impl_ShellView_set_message;
epv->unset_message = impl_ShellView_unset_message;
epv->set_message = impl_ShellView_set_message;
epv->unset_message = impl_ShellView_unset_message;
epv->change_current_view = impl_ShellView_change_current_view;
epv->set_title = impl_ShellView_set_title;
epv->set_title = impl_ShellView_set_title;
vepv = &ShellView_vepv;
vepv->_base_epv = base_epv;