Cast this fucntion pointer.
2001-02-17 Christopher James Lahey <clahey@ximian.com> * e-shell-view-menu.c (file_verbs): Cast this fucntion pointer. * e-storage-set-view.c (ETABLE_SPEC): Turn on horizontal scrolling here. * evolution-shell-component.c (impl_ShellComponent_async_copy_folder): Commented out this unused function. * evolution-storage.c (storage_gtk_to_corba_result): Removed an unused variable here. * importer/importer.c: Include gal/widets/e-gui-utils.h. svn path=/trunk/; revision=8269
This commit is contained in:
committed by
Chris Lahey
parent
08f5c5e324
commit
ec5d0a0fab
@ -1,3 +1,19 @@
|
||||
2001-02-17 Christopher James Lahey <clahey@ximian.com>
|
||||
|
||||
* e-shell-view-menu.c (file_verbs): Cast this fucntion pointer.
|
||||
|
||||
* e-storage-set-view.c (ETABLE_SPEC): Turn on horizontal scrolling
|
||||
here.
|
||||
|
||||
* evolution-shell-component.c
|
||||
(impl_ShellComponent_async_copy_folder): Commented out this unused
|
||||
function.
|
||||
|
||||
* evolution-storage.c (storage_gtk_to_corba_result): Removed an
|
||||
unused variable here.
|
||||
|
||||
* importer/importer.c: Include gal/widets/e-gui-utils.h.
|
||||
|
||||
2001-02-14 Dan Winship <danw@ximian.com>
|
||||
|
||||
* Evolution-Storage.idl: add asyncCreateFolder and
|
||||
|
||||
@ -448,7 +448,7 @@ BonoboUIVerb new_verbs [] = {
|
||||
};
|
||||
|
||||
BonoboUIVerb file_verbs [] = {
|
||||
BONOBO_UI_VERB ("FileImporter", show_import_wizard),
|
||||
BONOBO_UI_VERB ("FileImporter", (BonoboUIVerbFn) show_import_wizard),
|
||||
BONOBO_UI_VERB ("FileGoToFolder", command_goto_folder),
|
||||
BONOBO_UI_VERB ("FileCreateFolder", command_create_folder),
|
||||
BONOBO_UI_VERB ("FileClose", command_close),
|
||||
|
||||
@ -45,7 +45,7 @@ static char *list [] = {
|
||||
};
|
||||
#endif
|
||||
|
||||
#define ETABLE_SPEC "<ETableSpecification no-headers=\"true\" selection-mode=\"single\" cursor-mode=\"line\" draw-grid=\"true\"> \
|
||||
#define ETABLE_SPEC "<ETableSpecification no-headers=\"true\" selection-mode=\"single\" cursor-mode=\"line\" draw-grid=\"true\" horizontal-scrolling=\"true\"> \
|
||||
<ETableColumn model_col=\"0\" _title=\"Folder\" expansion=\"1.0\" minimum_width=\"20\" resizable=\"true\" cell=\"render_tree\" compare=\"string\"/> \
|
||||
<ETableState> \
|
||||
<column source=\"0\"/> \
|
||||
|
||||
@ -267,6 +267,7 @@ impl_ShellComponent_async_remove_folder (PortableServer_Servant servant,
|
||||
(* priv->remove_folder_fn) (shell_component, physical_uri, listener, priv->closure);
|
||||
}
|
||||
|
||||
#if 0
|
||||
static void
|
||||
impl_ShellComponent_async_copy_folder (PortableServer_Servant servant,
|
||||
const GNOME_Evolution_ShellComponentListener listener,
|
||||
@ -297,6 +298,7 @@ impl_ShellComponent_async_copy_folder (PortableServer_Servant servant,
|
||||
listener,
|
||||
priv->closure);
|
||||
}
|
||||
#endif
|
||||
|
||||
static void
|
||||
impl_ShellComponent_populate_folder_context_menu (PortableServer_Servant servant,
|
||||
|
||||
@ -252,8 +252,6 @@ impl_Storage__get_name (PortableServer_Servant servant,
|
||||
static GNOME_Evolution_Storage_Result
|
||||
storage_gtk_to_corba_result (EvolutionStorageResult result)
|
||||
{
|
||||
GNOME_Evolution_Storage_Result corba_result;
|
||||
|
||||
switch (result) {
|
||||
case EVOLUTION_STORAGE_OK:
|
||||
return GNOME_Evolution_Storage_OK;
|
||||
|
||||
@ -34,6 +34,7 @@
|
||||
#include <glade/glade.h>
|
||||
#include <gtkhtml/gtkhtml.h>
|
||||
#include <e-util/e-html-utils.h>
|
||||
#include <gal/widgets/e-gui-utils.h>
|
||||
|
||||
#include "importer.h"
|
||||
#include "GNOME_Evolution_Importer.h"
|
||||
|
||||
Reference in New Issue
Block a user