aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--composer/ChangeLog5
-rw-r--r--composer/listener.c4
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);
}