diff options
author | Radek Doulik <rodo@ximian.com> | 2001-10-30 07:41:23 +0800 |
---|---|---|
committer | Radek Doulik <rodo@src.gnome.org> | 2001-10-30 07:41:23 +0800 |
commit | 61bd0c972fcfe7b0016896c3edfe7c828793ffc4 (patch) | |
tree | 6b1de4f9161ea4181d0c3b914937e7e0d56ca9fa | |
parent | a7abb9ea6d65e7b5b3278f70d66199bb69861503 (diff) | |
download | gsoc2013-evolution-61bd0c972fcfe7b0016896c3edfe7c828793ffc4.tar.gz gsoc2013-evolution-61bd0c972fcfe7b0016896c3edfe7c828793ffc4.tar.zst gsoc2013-evolution-61bd0c972fcfe7b0016896c3edfe7c828793ffc4.zip |
simplified, requires new gtkhtml
2001-10-30 Radek Doulik <rodo@ximian.com>
* listener.c (reply_indent): simplified, requires new gtkhtml
svn path=/trunk/; revision=14383
-rw-r--r-- | composer/ChangeLog | 4 | ||||
-rw-r--r-- | composer/listener.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/composer/ChangeLog b/composer/ChangeLog index 8f5e7af594..33ff23ef08 100644 --- a/composer/ChangeLog +++ b/composer/ChangeLog @@ -1,3 +1,7 @@ +2001-10-30 Radek Doulik <rodo@ximian.com> + + * listener.c (reply_indent): simplified, requires new gtkhtml + 2001-10-29 Larry Ewing <lewing@ximian.com> * e-msg-composer.h: add GList to hold the current images. diff --git a/composer/listener.c b/composer/listener.c index d85f27aa8a..0b2eaa61f1 100644 --- a/composer/listener.c +++ b/composer/listener.c @@ -89,12 +89,8 @@ reply_indent (EditorListener *l, CORBA_Environment * ev) GNOME_GtkHTML_Editor_Engine_runCommand (l->composer->editor_engine, "style-normal", ev); GNOME_GtkHTML_Editor_Engine_runCommand (l->composer->editor_engine, "indent-zero", ev); - GNOME_GtkHTML_Editor_Engine_runCommand (l->composer->editor_engine, "cursor-position-save", ev); - GNOME_GtkHTML_Editor_Engine_runCommand (l->composer->editor_engine, "select-paragraph-extended", ev); GNOME_GtkHTML_Editor_Engine_runCommand (l->composer->editor_engine, "text-default-color", ev); GNOME_GtkHTML_Editor_Engine_runCommand (l->composer->editor_engine, "italic-off", ev); - GNOME_GtkHTML_Editor_Engine_runCommand (l->composer->editor_engine, "disable-selection", ev); - GNOME_GtkHTML_Editor_Engine_runCommand (l->composer->editor_engine, "cursor-position-restore", ev); } static void |