diff options
author | Chris Toshok <toshok@helixcode.com> | 2000-09-01 14:29:41 +0800 |
---|---|---|
committer | Chris Toshok <toshok@src.gnome.org> | 2000-09-01 14:29:41 +0800 |
commit | cfcd7f04addc2b657d2323063b52605dd2373d46 (patch) | |
tree | ebcbac53ba8a2c935dd76f130042b5650be989d1 | |
parent | 26112575da034a7a0a79ab2238a01304348eada5 (diff) | |
download | gsoc2013-evolution-cfcd7f04addc2b657d2323063b52605dd2373d46.tar gsoc2013-evolution-cfcd7f04addc2b657d2323063b52605dd2373d46.tar.gz gsoc2013-evolution-cfcd7f04addc2b657d2323063b52605dd2373d46.tar.bz2 gsoc2013-evolution-cfcd7f04addc2b657d2323063b52605dd2373d46.tar.lz gsoc2013-evolution-cfcd7f04addc2b657d2323063b52605dd2373d46.tar.xz gsoc2013-evolution-cfcd7f04addc2b657d2323063b52605dd2373d46.tar.zst gsoc2013-evolution-cfcd7f04addc2b657d2323063b52605dd2373d46.zip |
initialize delayed_selection = NULL;
2000-08-31 Chris Toshok <toshok@helixcode.com>
* e-shell-view.c (init): initialize delayed_selection = NULL;
svn path=/trunk/; revision=5160
-rw-r--r-- | shell/ChangeLog | 4 | ||||
-rw-r--r-- | shell/e-shell-view.c | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index 503ac66817..a7971bd973 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,3 +1,7 @@ +2000-08-31 Chris Toshok <toshok@helixcode.com> + + * e-shell-view.c (init): initialize delayed_selection = NULL; + 2000-09-01 Ettore Perazzoli <ettore@helixcode.com> * evolution-storage.c (evolution_storage_new_folder): Handle @path diff --git a/shell/e-shell-view.c b/shell/e-shell-view.c index f1fc3402f0..a6acdb5b41 100644 --- a/shell/e-shell-view.c +++ b/shell/e-shell-view.c @@ -636,6 +636,7 @@ init (EShellView *shell_view) priv->shell = NULL; priv->uih = NULL; priv->uri = NULL; + priv->delayed_selection = NULL; priv->appbar = NULL; priv->hpaned = NULL; |