changeset 10165:5c3b27763126

[gaim-migrate @ 11251] Remove some code left-over from some prefs we removed. committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Tue, 09 Nov 2004 05:41:41 +0000
parents 3f71f7282dbf
children 72c9e9bb2c19
files src/gtkimhtml.c src/gtkimhtml.h
diffstat 2 files changed, 0 insertions(+), 31 deletions(-) [+]
line wrap: on
line diff
--- a/src/gtkimhtml.c	Tue Nov 09 05:36:06 2004 +0000
+++ b/src/gtkimhtml.c	Tue Nov 09 05:41:41 2004 +0000
@@ -2632,18 +2632,6 @@
 	imhtml->show_comments = show;
 }
 
-void       gtk_imhtml_html_shortcuts   (GtkIMHtml        *imhtml,
-                    gboolean allow)
-{
-	imhtml->html_shortcuts = allow;
-}
-
-void       gtk_imhtml_smiley_shortcuts (GtkIMHtml        *imhtml,
-                    gboolean allow)
-{
-	imhtml->smiley_shortcuts = allow;
-}
-
 void
 gtk_imhtml_set_protocol_name(GtkIMHtml *imhtml, const gchar *protocol_name) {
 	if (imhtml->protocol_name)
--- a/src/gtkimhtml.h	Tue Nov 09 05:36:06 2004 +0000
+++ b/src/gtkimhtml.h	Tue Nov 09 05:41:41 2004 +0000
@@ -84,9 +84,6 @@
 
 	gboolean show_comments;
 
-	gboolean html_shortcuts;
-	gboolean smiley_shortcuts;
-
 	GtkWidget *tip_window;
 	char *tip;
 	guint tip_timer;
@@ -284,22 +281,6 @@
 void gtk_imhtml_show_comments(GtkIMHtml *imhtml, gboolean show);
 
 /**
- * Enables or disables formatting shortcut keys in a GTK IM/HTML.
- *
- * @param imhtml The GTK IM/HTML.
- * @param allow  @c TRUE if shortcut keys are allowed, or @c FALSE otherwise.
- */
-void gtk_imhtml_html_shortcuts(GtkIMHtml *imhtml, gboolean allow);
-
-/**
- * Enables or disables smiley insertion shortcut keys in a GTK IM/HTML.
- *
- * @param imhtml The GTK IM/HTML.
- * @param allow  @c TRUE if shortcut keys are allowed, or @c FALSE otherwise.
- */
-void gtk_imhtml_smiley_shortcuts(GtkIMHtml *imhtml, gboolean allow);
-
-/**
  * Associates a protocol name with a GTK IM/HTML.
  *
  * @param imhtml        The GTK IM/HTML.