aboutsummaryrefslogtreecommitdiffstats
path: root/widgets
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2009-05-17 00:11:55 +0800
committerMatthew Barnes <mbarnes@redhat.com>2009-05-21 10:52:36 +0800
commita538f3f3100dbdbae1ea172ae3b8344e650d529d (patch)
treef1f8b15c56dbe92e46352853373382af9bf92de0 /widgets
parentd8fd55f9ec0e70a0d5c8529ea989f8c272d0c443 (diff)
downloadgsoc2013-evolution-a538f3f3100dbdbae1ea172ae3b8344e650d529d.tar.gz
gsoc2013-evolution-a538f3f3100dbdbae1ea172ae3b8344e650d529d.tar.zst
gsoc2013-evolution-a538f3f3100dbdbae1ea172ae3b8344e650d529d.zip
Fix several types of pedantic compiler warnings.
Diffstat (limited to 'widgets')
-rw-r--r--widgets/menus/gal-view-instance-save-as-dialog.c2
-rw-r--r--widgets/misc/e-canvas-background.c2
-rw-r--r--widgets/misc/e-canvas.c8
-rw-r--r--widgets/misc/e-charset-picker.c2
-rw-r--r--widgets/misc/e-filter-bar.c2
-rw-r--r--widgets/misc/e-filter-bar.h2
-rw-r--r--widgets/table/a11y/gal-a11y-e-table-item.c2
-rw-r--r--widgets/table/e-cell-hbox.c10
-rw-r--r--widgets/table/e-table-col.c2
-rw-r--r--widgets/table/e-table-config.c2
-rw-r--r--widgets/table/e-table.c2
-rw-r--r--widgets/table/e-tree-selection-model.c2
-rw-r--r--widgets/table/e-tree.c2
13 files changed, 20 insertions, 20 deletions
diff --git a/widgets/menus/gal-view-instance-save-as-dialog.c b/widgets/menus/gal-view-instance-save-as-dialog.c
index 142806d514..bad4c20bc6 100644
--- a/widgets/menus/gal-view-instance-save-as-dialog.c
+++ b/widgets/menus/gal-view-instance-save-as-dialog.c
@@ -35,7 +35,7 @@ G_DEFINE_TYPE (GalViewInstanceSaveAsDialog, gal_view_instance_save_as_dialog, GT
/* The arguments we take */
enum {
PROP_0,
- PROP_INSTANCE,
+ PROP_INSTANCE
};
enum {
diff --git a/widgets/misc/e-canvas-background.c b/widgets/misc/e-canvas-background.c
index 77cad661e1..4d300f01d4 100644
--- a/widgets/misc/e-canvas-background.c
+++ b/widgets/misc/e-canvas-background.c
@@ -74,7 +74,7 @@ enum {
PROP_X1,
PROP_X2,
PROP_Y1,
- PROP_Y2,
+ PROP_Y2
};
static void
diff --git a/widgets/misc/e-canvas.c b/widgets/misc/e-canvas.c
index 3cb85c5839..903331576e 100644
--- a/widgets/misc/e-canvas.c
+++ b/widgets/misc/e-canvas.c
@@ -837,7 +837,7 @@ e_canvas_item_set_cursor (GnomeCanvasItem *item, gpointer id)
if (func)
func(info->item, flags, info->id);
g_message ("ECANVAS: free info (2): item %p, id %p",
- info->item, info->id);
+ (gpointer) info->item, (gpointer) info->id);
g_object_unref (info->item);
g_free(info);
}
@@ -851,7 +851,7 @@ e_canvas_item_set_cursor (GnomeCanvasItem *item, gpointer id)
info->item = item;
g_object_ref (info->item);
info->id = id;
- g_message ("ECANVAS: new info item %p, id %p", item, id);
+ g_message ("ECANVAS: new info item %p, id %p", (gpointer) item, (gpointer) id);
flags = E_CANVAS_ITEM_SELECTION_SELECT | E_CANVAS_ITEM_SELECTION_CURSOR;
func = (ECanvasItemSelectionFunc)g_object_get_data(G_OBJECT(item),
@@ -920,7 +920,7 @@ e_canvas_item_add_selection (GnomeCanvasItem *item, gpointer id)
info->item = item;
g_object_ref (info->item);
info->id = id;
- g_message ("ECANVAS: new info (2): item %p, id %p", item, id);
+ g_message ("ECANVAS: new info (2): item %p, id %p", (gpointer) item, (gpointer) id);
func = (ECanvasItemSelectionFunc)g_object_get_data(G_OBJECT(item),
"ECanvasItem::selection_callback");
@@ -967,7 +967,7 @@ e_canvas_item_remove_selection (GnomeCanvasItem *item, gpointer id)
canvas->cursor = NULL;
g_message ("ECANVAS: removing info: item %p, info %p",
- info->item, info->id);
+ (gpointer) info->item, (gpointer) info->id);
g_object_unref (info->item);
g_free(info);
g_list_free_1(list);
diff --git a/widgets/misc/e-charset-picker.c b/widgets/misc/e-charset-picker.c
index 6b30b3b11c..81505dcb02 100644
--- a/widgets/misc/e-charset-picker.c
+++ b/widgets/misc/e-charset-picker.c
@@ -46,7 +46,7 @@ typedef enum {
E_CHARSET_TURKISH,
E_CHARSET_UNICODE,
E_CHARSET_WESTERN_EUROPEAN,
- E_CHARSET_WESTERN_EUROPEAN_NEW,
+ E_CHARSET_WESTERN_EUROPEAN_NEW
} ECharsetClass;
static const char *classnames[] = {
diff --git a/widgets/misc/e-filter-bar.c b/widgets/misc/e-filter-bar.c
index 2125bdf30d..6d4bff46ca 100644
--- a/widgets/misc/e-filter-bar.c
+++ b/widgets/misc/e-filter-bar.c
@@ -37,7 +37,7 @@
enum {
PROP_0,
PROP_QUERY,
- PROP_STATE,
+ PROP_STATE
};
static gpointer parent_class;
diff --git a/widgets/misc/e-filter-bar.h b/widgets/misc/e-filter-bar.h
index edc20e2fec..957eea3d0b 100644
--- a/widgets/misc/e-filter-bar.h
+++ b/widgets/misc/e-filter-bar.h
@@ -107,7 +107,7 @@ enum {
E_FILTERBAR_CURRENT_MESSAGE_ID = -6,
E_FILTERBAR_CURRENT_FOLDER_ID = -7,
E_FILTERBAR_CURRENT_ACCOUNT_ID = -8,
- E_FILTERBAR_ALL_ACCOUNTS_ID = -9,
+ E_FILTERBAR_ALL_ACCOUNTS_ID = -9
};
#define E_FILTERBAR_SAVE { N_("_Save Search..."), E_FILTERBAR_SAVE_ID, 0 }
diff --git a/widgets/table/a11y/gal-a11y-e-table-item.c b/widgets/table/a11y/gal-a11y-e-table-item.c
index 16d50df9b0..e28d0f6b83 100644
--- a/widgets/table/a11y/gal-a11y-e-table-item.c
+++ b/widgets/table/a11y/gal-a11y-e-table-item.c
@@ -760,7 +760,7 @@ enum {
ETI_HEADER_UNCHANGED = 0,
ETI_HEADER_REORDERED,
ETI_HEADER_NEW_ADDED,
- ETI_HEADER_REMOVED,
+ ETI_HEADER_REMOVED
};
/*
diff --git a/widgets/table/e-cell-hbox.c b/widgets/table/e-cell-hbox.c
index 6c0bded852..5552bd33b2 100644
--- a/widgets/table/e-cell-hbox.c
+++ b/widgets/table/e-cell-hbox.c
@@ -152,15 +152,15 @@ ecv_draw (ECellView *ecell_view, GdkDrawable *drawable,
/* Now cause our subcells to draw their contents,
shifted by subcell_offset pixels */
int width = allotted_width * hbox_view->def_size_cols[i] / 100;
- //e_cell_max_width_by_row (hbox_view->subcell_views[i], hbox_view->model_cols[i], view_col, row);
-// if (width < hbox_view->def_size_cols[i])
- // width = hbox_view->def_size_cols[i];
-// printf("width of %d %d of %d\n", width,hbox_view->def_size_cols[i], allotted_width );
+ /* e_cell_max_width_by_row (hbox_view->subcell_views[i], hbox_view->model_cols[i], view_col, row);
+ if (width < hbox_view->def_size_cols[i])
+ width = hbox_view->def_size_cols[i];
+ printf("width of %d %d of %d\n", width,hbox_view->def_size_cols[i], allotted_width ); */
e_cell_draw (hbox_view->subcell_views[i], drawable,
hbox_view->model_cols[i], view_col, row, flags,
x1 + subcell_offset , y1, x1 + subcell_offset + width, y2);
- subcell_offset += width; //e_cell_max_width_by_row (hbox_view->subcell_views[i], hbox_view->model_cols[i], view_col, row);
+ subcell_offset += width; /* e_cell_max_width_by_row (hbox_view->subcell_views[i], hbox_view->model_cols[i], view_col, row); */
}
}
diff --git a/widgets/table/e-table-col.c b/widgets/table/e-table-col.c
index 8d90267a5e..892ff7cc5d 100644
--- a/widgets/table/e-table-col.c
+++ b/widgets/table/e-table-col.c
@@ -31,7 +31,7 @@ G_DEFINE_TYPE (ETableCol, e_table_col, G_TYPE_OBJECT)
enum {
PROP_0,
- PROP_COMPARE_COL,
+ PROP_COMPARE_COL
};
static void
diff --git a/widgets/table/e-table-config.c b/widgets/table/e-table-config.c
index 5f93c32a72..0e69c45754 100644
--- a/widgets/table/e-table-config.c
+++ b/widgets/table/e-table-config.c
@@ -54,7 +54,7 @@ enum {
enum {
PROP_0,
- PROP_STATE,
+ PROP_STATE
};
enum {
diff --git a/widgets/table/e-table.c b/widgets/table/e-table.c
index 754607c376..47ecd4bb45 100644
--- a/widgets/table/e-table.c
+++ b/widgets/table/e-table.c
@@ -656,7 +656,7 @@ e_table_setup_header (ETable *e_table)
gtk_widget_show (GTK_WIDGET (e_table->header_canvas));
- pointer = g_strdup_printf("%p", e_table);
+ pointer = g_strdup_printf("%p", (gpointer) e_table);
e_table->header_item = gnome_canvas_item_new (
gnome_canvas_root (e_table->header_canvas),
diff --git a/widgets/table/e-tree-selection-model.c b/widgets/table/e-tree-selection-model.c
index 4eef7a9ad6..2b903ca0bc 100644
--- a/widgets/table/e-tree-selection-model.c
+++ b/widgets/table/e-tree-selection-model.c
@@ -36,7 +36,7 @@ enum {
PROP_CURSOR_ROW,
PROP_CURSOR_COL,
PROP_MODEL,
- PROP_ETTA,
+ PROP_ETTA
};
struct ETreeSelectionModelPriv {
diff --git a/widgets/table/e-tree.c b/widgets/table/e-tree.c
index 08399609a0..c9637cf70e 100644
--- a/widgets/table/e-tree.c
+++ b/widgets/table/e-tree.c
@@ -704,7 +704,7 @@ e_tree_setup_header (ETree *e_tree)
gtk_widget_show (GTK_WIDGET (e_tree->priv->header_canvas));
- pointer = g_strdup_printf("%p", e_tree);
+ pointer = g_strdup_printf("%p", (gpointer) e_tree);
e_tree->priv->header_item = gnome_canvas_item_new (
gnome_canvas_root (e_tree->priv->header_canvas),
-0/+11 * Return the original key in the hash table if requested.Federico Mena Quintero2001-10-112-18/+43 * remove unneeded assertionsJP Rosevear2001-10-112-3/+5 * fix logic checksJP Rosevear2001-10-106-11/+72 * Fixes bug #884.Federico Mena Quintero2001-10-106-17/+235 * util function to get address (itip_addresses_get_default): get only theJP Rosevear2001-10-109-101/+467 * deal correctly with URIs to be inserted into the hash table, so that weRodrigo Moya2001-10-102-2/+25 * moved to a common place (cal_backend_file_open): check if "uristr != NULL"Rodrigo Moya2001-10-105-62/+93 * Fix incorrect variable name check.Dan Winship2001-10-092-1/+6 * refactor functionality into several function (comp_string): if we areJP Rosevear2001-10-045-162/+225 * replace use of gnome_vfs_uri with e_uriRodrigo Moya2001-10-0411-125/+144 * Added priorities to a bunch of these columns. Fixes Ximian bug #7158.Christopher James Lahey2001-10-032-13/+18 * save the EXDATE as a DATE-TIME value, since we know the exact time. FixesDamon Chaplin2001-10-036-93/+49 * Use `bonobo_ui_component_new_default()', not `bonobo_ui_component_new()'.Ettore Perazzoli2001-10-032-1/+7 * use bonobo-exception to tidyJP Rosevear2001-10-022-5/+8 * handle -1 as well (comp_from_remote_record): fix monthly by dayJP Rosevear2001-10-022-3/+14 * unref the page objects here, instead of in close_dialog(). (This was fixedDamon Chaplin2001-10-022-4/+13 * Set the window state to sticky. Thanks to Peter Teichman for theFederico Mena Quintero2001-10-022-0/+12 * Convert the comp exceptions to the pilot record (comp_from_remote_record):JP Rosevear2001-10-022-6/+55 * strdup the uid to avoid double free, write out only after everything isJP Rosevear2001-10-022-3/+9 * don't use gnome_vfs_uri_is_local on URIs created withRodrigo Moya2001-10-024-8/+7 * use bound_text to print the summary, so it wraps instead of being clippedDamon Chaplin2001-09-294-29/+60 * Handle the fields and category we don't sync by making sure we don'tJP Rosevear2001-09-296-16/+74 * init the execption rather than freeing itJP Rosevear2001-09-292-1/+8 * use bonobo-exception for exceptions (cal_client_open_calendar): likewiseRodrigo Moya2001-09-282-3/+14 * Update pixmap menu paths; /menu/ComponentToolsPlaceholder/Tools ->Ettore Perazzoli2001-09-283-16/+23 * added InvalidURI and UnsupportedMethod exceptions to the CalFactoryRodrigo Moya2001-09-274-49/+133 * added comparison functions for these special cell types. But the date andDamon Chaplin2001-09-2721-177/+525 * Fixes the GUI part of bug #7892.Federico Mena Quintero2001-09-273-39/+99 * disconnect signals first thingJP Rosevear2001-09-272-2/+7 * Add -export-dynamic to make glade custom widgets work on non-Linux.Dan Winship2001-09-262-1/+6 * added CAL_MODE_INVALID to CalMode enumRodrigo Moya2001-09-262-0/+5 * new protoJP Rosevear2001-09-2614-51/+369 * Warning fixes courtesy of Chris Lahey <clahey@ximian.com>.Federico Mena Quintero2001-09-267-162/+181 * Rebuge demugging printf() - FedericoFederico Mena Quintero2001-09-261-2/+0 * Check that the timeout is not set up before we create a new one; theFederico Mena Quintero2001-09-262-4/+18 * use bonobo-exception stuff to clean codeJP Rosevear2001-09-2619-2452/+643 * base text on component typeJP Rosevear2001-09-242-7/+43 * don't use gnome_vfs_uri_new_private (fixes Ximian #10544)Rodrigo Moya2001-09-213-14/+17 * #include a few files we were missing from libgnomevfs.Federico Mena Quintero2001-09-213-0/+9 * gets a config db (cal_backend_file_destroy): release config dbJP Rosevear2001-09-214-19/+174 * make sure to release the ref on priv->comp.Larry Ewing2001-09-203-0/+18 * Display a notification message always, in addition to playing the sound.Federico Mena Quintero2001-09-205-30/+72 * listen for model changes (task_editor_edit_comp): add the attendees to theJP Rosevear2001-09-209-106/+271 * Fixed weird include pathRodrigo Moya2001-09-201-1/+1 * add a new parameter (const char *iid) to specify the OAFIID of the factoryRodrigo Moya2001-09-193-6/+27 * remove silly debug #if 0JP Rosevear2001-09-194-4/+16 * A page that shows the meeting time selector and free/busy data forJP Rosevear2001-09-1924-789/+7539 * Fixes bug #6350.Federico Mena Quintero2001-09-193-142/+174 * Fixes bug #2830.Federico Mena Quintero2001-09-196-28/+109 * new class for managing multiple calendars, with an API very similar to theRodrigo Moya2001-09-1916-364/+1436 * added a timeout to refresh the list every 10 minutes. Not ideal, as theDamon Chaplin2001-09-1810-39/+303 * Do not call calendar_config_init() here.Federico Mena Quintero2001-09-184-6/+9 * Duh, only setup the timeout if the list was empty. (alarm_ready_cb):Federico Mena Quintero2001-09-182-7/+22 * Switch the alarm system from using SIGALRM to normal glib timers. Also,Federico Mena Quintero2001-09-184-188/+112 * get itip addresses (calendar_model_destroy): destroy sameJP Rosevear2001-09-182-12/+59 * for each call back, removes the alarms (cal_component_remove_all_alarms):JP Rosevear2001-09-175-20/+146 * Updated required version of gal to 0.11.99.4.Christopher James Lahey2001-09-172-3/+11 * [Automake 1.5 fixes pointed out by Richard BoultonEttore Perazzoli2001-09-152-1/+2 * [Automake 1.5 fixes pointed out by Richard BoultonEttore Perazzoli2001-09-152-1/+3 * [Automake 1.5 fixes pointed out by Richard BoultonEttore Perazzoli2001-09-154-3/+11 * added space after 'identities' in the message. Fixes bug #9896.Damon Chaplin2001-09-152-1/+6 * remove translation marker for nowJP Rosevear2001-09-152-1/+6 * use ical partstat, role, cutypes directlyJP Rosevear2001-09-145-248/+268 * send 6 weeks of free busy info starting with the UTC start of dayJP Rosevear2001-09-133-19/+118 * Added an use_description argument so that other alarms can fall back toFederico Mena Quintero2001-09-123-17/+159 * free the destination vector when we finish with it, if we actually addJP Rosevear2001-09-122-5/+11 * Convert string generated by strftime to UTF-8.Chyla Zbigniew2001-09-112-9/+34 * Handle the new icalattach type instead of struct icalattachtype.Federico Mena Quintero2001-09-115-439/+38 * [Fix #958, ShellComponents should not be created by factories, forEttore Perazzoli2001-09-064-38/+38 * Implemented.Federico Mena Quintero2001-09-058-46/+781 * don't call calendar_config_check_timezone_set() now, since the startupDamon Chaplin2001-09-0418-163/+470 * changed 3 occurrences of 'Replyed' to 'replied'Damon Chaplin2001-09-012-3/+7 * Marked strings for translation (with U_).Chyla Zbigniew2001-09-013-6/+15 * fix debugging messages so they use "" rather than NULL. Fixes bug #8559.Damon Chaplin2001-09-012-2/+8 * See if the set of categories changed by using the removed_categories hashFederico Mena Quintero2001-08-302-16/+91 * Fixes bug #7879, a query may receive an update notification from theFederico Mena Quintero2001-08-295-41/+207 * Unset the priv->updating flag before returning in the case the componentFederico Mena Quintero2001-08-232-0/+8 * Added a snooze flag to differentiate snoozed alarms from real occurrences.Federico Mena Quintero2001-08-233-69/+155 * call back to add timezones to the top level (itip_send_comp): callJP Rosevear2001-08-232-1/+34 * #include <libgnomevfs/gnome-vfs-types.h> so this will compile againstDan Winship2001-08-222-0/+6 * open the tasks folder associated with the calendar being opened, and notRodrigo Moya2001-08-223-8/+51 * Handle the case where there is no attachment. Fixes bug #7257.Federico Mena Quintero2001-08-222-5/+21 * strip the mailto bit for the email address if we display itJP Rosevear2001-08-222-1/+6 * added new e-sexp operator. We don't currently use it though.Damon Chaplin2001-08-2212-27/+268 * new files to contain utility functions for calendar backendsRodrigo Moya2001-08-219-251/+252 * new functions moved from the CalBackendFile, to allow its use outside ofRodrigo Moya2001-08-215-543/+372 * missing changelog entryJP Rosevear2001-08-201-0/+5 * use Delete icon in menu, and change to bigger Save icon in toolbar.Damon Chaplin2001-08-202-1/+6 * used new_task-16.png and goto-16.png.Damon Chaplin2001-08-203-3/+10 * added delete icons for menu and toolbar.Damon Chaplin2001-08-202-0/+7 * added Cut/Copy/Paste icons for toolbar.Damon Chaplin2001-08-202-1/+7 * uses new delete icons in menu & toolbar.Damon Chaplin2001-08-202-0/+6 * Added display_name and description to the type.Ettore Perazzoli2001-08-203-4/+9 * use new delete icon for toolbar.Damon Chaplin2001-08-202-0/+5 * fixed typo, 'send' -> 'sent'. Bug #7621.Damon Chaplin2001-08-202-2/+6 * added option to hide completed tasks after a given number ofDamon Chaplin2001-08-194-2/+92 * used new Save/Save As icons.Damon Chaplin2001-08-194-3/+22 * Use e_dialog_editable_get instead of gtk_editable_get_chars (we need UTF-8Zbigniew Chyla2001-08-192-1/+7 * New. (config_read): Use locale's setting as default forZbigniew Chyla2001-08-182-1/+18 * new function to open the task editor to add a new task.Damon Chaplin2001-08-184-0/+66 * destroy the addresses (clean_up): don't free the addresses, we need themJP Rosevear2001-08-181-3/+3 * Startup assistant stuffIain Holmes2001-08-178-1006/+13 * hide the timezone fields for all-day events. We will use DATE values forDamon Chaplin2001-08-1712-20/+210 * If the component has no alarms remember to set the priv->updating flag toFederico Mena Quintero2001-08-172-1/+9 * get the destinations property, not the text propertyJP Rosevear2001-08-172-1/+7 * Set the default-to-add notification to be display a message 15 minutesFederico Mena Quintero2001-08-172-41/+54 * New function to strip surrounding whitespace from a string of categoriesFederico Mena Quintero2001-08-175-4/+95 * Do not set the time popup range. We also want to be able to createFederico Mena Quintero2001-08-173-12/+14 * Boost scoring on an exact nickname match. Manually addressify match.Jon Trowbridge2001-08-162-10/+15 * only fill the component and save it if something has changedJP Rosevear2001-08-152-2/+15 * OK, re-added the default alarm options. Way too many people are asking forFederico Mena Quintero2001-08-152-0/+106 * Add the user creatable items. The callback is not actually implementedFederico Mena Quintero2001-08-154-23/+134 * added support for the Contacts field. Note that I'm not sure what weDamon Chaplin2001-08-1514-69/+747 * Made the click-to-add message shorter. Fixes bug #7177.Federico Mena Quintero2001-08-151-0/+5 * *** empty log message ***Federico Mena Quintero2001-08-152-2/+2 * Added Tigert's new icons for Prev and Next.Federico Mena Quintero2001-08-152-0/+7 * Make the "Any Category" item consistent with the one in the addressbook.Federico Mena Quintero2001-08-152-6/+15 * Handle an array of categories in the CalSearchBar instead of our own menuFederico Mena Quintero2001-08-154-141/+157 * add dialog for feedback (remove_item): ditto (send_item): dittoJP Rosevear2001-08-142-15/+43 * rewrite the gui to use gtkhtmlJP Rosevear2001-08-142-348/+376 * Remove #include <config.h> from here. Same here.Kjartan Maraas2001-08-123-5/+5 * Update the paths of the Tools menu according to the changes in the XMLEttore Perazzoli2001-08-123-18/+26 * turn on word-wrap for the description fields. Fixes bug #6821.Damon Chaplin2001-08-123-1/+14 * Removed comment about the need to resolve nicknames properly, because weJon Trowbridge2001-08-112-6/+11 * added new backend method to get the component given a UID.Damon Chaplin2001-08-1012-48/+231 * unref the GdkPixmap and GdkBitmap returned by the functionRodrigo Moya2001-08-104-1/+20 * Remove progress frameJP Rosevear2001-08-108-939/+578 * Chain to the destroy handler in the parent class!Federico Mena Quintero2001-08-094-0/+50 * removed underlined accelerator key from "_Go To Today" button. GnomeDialogDamon Chaplin2001-08-092-1/+8 * Stop editing any event. Fixes bug #5949.Federico Mena Quintero2001-08-092-0/+7 * Duuuh, set the alarm_copy on the component, not the original alarm. FixesFederico Mena Quintero2001-08-092-1/+7 * set the attendees of a component (meeting_page_fill_component): use aboveJP Rosevear2001-08-096-46/+185 * don't use a NULL mask in the call to gdk_gc_set_clip_maskRodrigo Moya2001-08-094-3/+15 * fix pre-processor macrosJP Rosevear2001-08-095-5/+16 * New function to stop further notification from happening.Federico Mena Quintero2001-08-085-45/+68 * Only unref the FIELD_COMPONENT if it is non-NULL. We return a NULL forFederico Mena Quintero2001-08-083-5/+15 * Make calendar.ics the suggested name when attaching the ical objectJP Rosevear2001-08-082-1/+6 * added 'different_timezone' fields to EDayViewEvent and EWeekViewEvent, toDamon Chaplin2001-08-0725-233/+575 * In process of fixing bug #6005. The "Calendar" page is now "Display", andFederico Mena Quintero2001-08-072-236/+168 * added check for NULL pointers. Maybe fixes #5203 (I can't reproduce it, soRodrigo Moya2001-08-073-19/+22 * New function; stops further notification from happening. This is neededFederico Mena Quintero2001-08-0418-165/+656 * Fixes bug #1407.Federico Mena Quintero2001-08-042-120/+7 * I18n fixes.Chyla Zbigniew2001-08-043-1/+16 * Add camel dependency.Jon Trowbridge2001-08-032-0/+6 * If the default category is the same as the value passed in to thisFederico Mena Quintero2001-08-024-3/+34 * removed debugging messages.Damon Chaplin2001-08-022-9/+4 * The calendar search bar widget now includes a drop-down menu of availableFederico Mena Quintero2001-08-0211-397/+561 * The Wombat now keeps track of which categories are present in the objectsFederico Mena Quintero2001-08-019-155/+339 * Sync from OLS - FedericoFederico Mena Quintero2001-08-016-12/+81 * yes, set the end date, but correctly calculated, not by using theRodrigo Moya2001-07-313-1/+32 * don't set the end date for the pasted components, since it will beRodrigo Moya2001-07-313-18/+9 * started some code to show the currently displayed dates in the folderDamon Chaplin2001-07-3120-122/+337 * added Help button. Though of course it doesn't do anything yet.Damon Chaplin2001-07-313-0/+17 * OopsJP Rosevear2001-07-311-2/+6 * Mark strings for translationJP Rosevear2001-07-311-67/+64 * call cal_client_get_free_busy for testing the new methodRodrigo Moya2001-07-302-2/+23 * implementedRodrigo Moya2001-07-302-1/+61 * recur is always in UTCJP Rosevear2001-07-282-1/+6 * handle timezones everywhere (get_timezone): new function to get a timezoneJP Rosevear2001-07-287-22/+158 * initialize to NULL some pointersRodrigo Moya2001-07-285-20/+78 * Constify and set the query sexp on the task pad's model as well.Federico Mena Quintero2001-07-283-2/+15 * Shut up CVS - FedericoFederico Mena Quintero2001-07-281-0/+4 * New files with a derivative of ESearchBar that generates sexps forFederico Mena Quintero2001-07-2816-635/+1016 * when an entry has changed, iterate over the elements of the entry and addJP Rosevear2001-07-272-175/+261 * send the empty string as subject if there is no summaryJP Rosevear2001-07-271-1/+4 * free a list of attendees (meeting_page_fill_widgets): clean up attendeeJP Rosevear2001-07-278-68/+156 * check that the row passed in is valid. Sometimes we get the "row-selected"Damon Chaplin2001-07-273-1/+72 * gracefully handle the lack of a methodJP Rosevear2001-07-262-0/+7 * check type of component before actually pasting. Deal with VCALENDARRodrigo Moya2001-07-265-13/+147 * used the new print preview icon.Damon Chaplin2001-07-263-5/+13 * see if the address is already in the list of attendees (duplicate_error):JP Rosevear2001-07-262-16/+68 * calculate tmp_tm.tm_wday ourselves. strftime has a habit of crashing ifDamon Chaplin2001-07-252-0/+11 * stip the delto and delfrom (popup_delegate_cb): show a delegate dialog andJP Rosevear2001-07-25