diff options
author | Radek Doulik <rodo@helixcode.com> | 2001-01-06 05:37:17 +0800 |
---|---|---|
committer | Radek Doulik <rodo@src.gnome.org> | 2001-01-06 05:37:17 +0800 |
commit | 80aa9c98e1c4e3d48af157baa0a1476358e7c512 (patch) | |
tree | bcba44fef140049a0db7fd972ea14d63a7bec714 /composer | |
parent | 9e5394aa6c864341a2bb09615b710368a921e8a8 (diff) | |
download | gsoc2013-evolution-80aa9c98e1c4e3d48af157baa0a1476358e7c512.tar gsoc2013-evolution-80aa9c98e1c4e3d48af157baa0a1476358e7c512.tar.gz gsoc2013-evolution-80aa9c98e1c4e3d48af157baa0a1476358e7c512.tar.bz2 gsoc2013-evolution-80aa9c98e1c4e3d48af157baa0a1476358e7c512.tar.lz gsoc2013-evolution-80aa9c98e1c4e3d48af157baa0a1476358e7c512.tar.xz gsoc2013-evolution-80aa9c98e1c4e3d48af157baa0a1476358e7c512.tar.zst gsoc2013-evolution-80aa9c98e1c4e3d48af157baa0a1476358e7c512.zip |
disable indenting for now, it crashes editor
2001-01-05 Radek Doulik <rodo@helixcode.com>
* listener.c (impl_event): disable indenting for now, it crashes
editor
svn path=/trunk/; revision=7274
Diffstat (limited to 'composer')
-rw-r--r-- | composer/ChangeLog | 5 | ||||
-rw-r--r-- | composer/listener.c | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/composer/ChangeLog b/composer/ChangeLog index cb0434ec1e..01deac7002 100644 --- a/composer/ChangeLog +++ b/composer/ChangeLog @@ -1,3 +1,8 @@ +2001-01-05 Radek Doulik <rodo@helixcode.com> + + * listener.c (impl_event): disable indenting for now, it crashes + editor + 2001-01-03 Jeffrey Stedfast <fejj@helixcode.com> * e-msg-composer.c (do_exit): If the headers have changed, then diff --git a/composer/listener.c b/composer/listener.c index 938122a480..175283fc4f 100644 --- a/composer/listener.c +++ b/composer/listener.c @@ -99,8 +99,8 @@ impl_event (PortableServer_Servant _servant, /* FIXME check for insert-paragraph command */ data = GNOME_GtkHTML_Editor_Engine_getParagraphData (l->composer->editor_engine, "orig", ev); if (ev->_major == CORBA_NO_EXCEPTION && data) { - if (CORBA_TypeCode_equal (data->_type, TC_boolean, ev) && BONOBO_ARG_GET_BOOLEAN (data)) - reply_indent (l, ev); + /* if (CORBA_TypeCode_equal (data->_type, TC_boolean, ev) && BONOBO_ARG_GET_BOOLEAN (data)) + reply_indent (l, ev); */ BONOBO_ARG_SET_BOOLEAN (data, CORBA_FALSE); GNOME_GtkHTML_Editor_Engine_setParagraphData (l->composer->editor_engine, "orig", data, ev); } |