diff options
author | Federico Mena Quintero <federico@ximian.com> | 2001-01-19 01:23:20 +0800 |
---|---|---|
committer | Federico Mena Quintero <federico@src.gnome.org> | 2001-01-19 01:23:20 +0800 |
commit | 1ebee5b96f0861a48a1de9b8230540d740dd65cf (patch) | |
tree | d765eaa62e5560f4fc096eabc56c430d9a57f6c3 /calendar/gui/tasks-migrate.h | |
parent | 12347daf568506538abf8f63c54c2699e8e8d383 (diff) | |
download | gsoc2013-evolution-1ebee5b96f0861a48a1de9b8230540d740dd65cf.tar gsoc2013-evolution-1ebee5b96f0861a48a1de9b8230540d740dd65cf.tar.gz gsoc2013-evolution-1ebee5b96f0861a48a1de9b8230540d740dd65cf.tar.bz2 gsoc2013-evolution-1ebee5b96f0861a48a1de9b8230540d740dd65cf.tar.lz gsoc2013-evolution-1ebee5b96f0861a48a1de9b8230540d740dd65cf.tar.xz gsoc2013-evolution-1ebee5b96f0861a48a1de9b8230540d740dd65cf.tar.zst gsoc2013-evolution-1ebee5b96f0861a48a1de9b8230540d740dd65cf.zip |
New files with a simple sequence to migrate the task components from the
2001-01-18 Federico Mena Quintero <federico@ximian.com>
* gui/tasks-migrate.[ch]: New files with a simple sequence to
migrate the task components from the old calendar folder into the
new tasks folder.
* gui/component-factory.c (owner_set_cb): Call tasks_migrate()
once evolution_dir is set. It sucks to have to do this here.
* cal-client/cal-client.c (cal_client_get_uids): In the inline
docs, indicate how to free the return value.
(cal_opened_cb): Ahem, moved assertion to the right place. Also,
ref() and unref() around our own signal emission because we are
not inside a signal handler, rather a simple callback from the
listener object; we want to have a chance to clean up even if the
client is unrefed during the emission.
* gui/Makefile.am (evolution_calendar_SOURCES): Added
tasks-migrate.[ch] to the list of sources.
2001-01-17 Federico Mena Quintero <federico@ximian.com>
* gui/event-editor.c (init_widgets): Use
e_calendar_item_set_max_days_sel() instead of setting GTK+ object
arguments.
* gui/e-day-view.c (e_day_view_set_cal_client): Oops, we had a
reversed test for the client being loaded.
* gui/tag-calendar.c (tag_calendar_by_client): Fixed similarly
reversed test.
svn path=/trunk/; revision=7622
Diffstat (limited to 'calendar/gui/tasks-migrate.h')
-rw-r--r-- | calendar/gui/tasks-migrate.h | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/calendar/gui/tasks-migrate.h b/calendar/gui/tasks-migrate.h new file mode 100644 index 0000000000..01f124222b --- /dev/null +++ b/calendar/gui/tasks-migrate.h @@ -0,0 +1,29 @@ +/* Evolution calendar - Migrate tasks from the calendar folder to the tasks folder + * + * Copyright (C) 2001 Ximian, Inc. + * + * Authors: Federico Mena-Quintero <federico@ximian.com> + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. + */ + +#ifndef TASKS_MIGRATE_H +#define TASKS_MIGRATE_H + + +void tasks_migrate (void); + + +#endif |