[dasher] g/c {start,stop}_compose: not implemented anywhere
- From: Patrick Welche <pwelche src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [dasher] g/c {start,stop}_compose: not implemented anywhere
- Date: Mon, 22 Aug 2011 16:21:20 +0000 (UTC)
commit da084e01249c62a7b78c67ec4a68e5efb0b5c3b1
Author: Patrick Welche <prlw1 cam ac uk>
Date: Mon Aug 22 08:48:04 2011 +0100
g/c {start,stop}_compose: not implemented anywhere
Src/Gtk2/dasher_editor.cpp | 15 ---------------
Src/Gtk2/dasher_editor.h | 2 --
2 files changed, 0 insertions(+), 17 deletions(-)
---
diff --git a/Src/Gtk2/dasher_editor.cpp b/Src/Gtk2/dasher_editor.cpp
index 580d33c..b04e472 100644
--- a/Src/Gtk2/dasher_editor.cpp
+++ b/Src/Gtk2/dasher_editor.cpp
@@ -97,8 +97,6 @@ dasher_editor_class_init(DasherEditorClass *pClass) {
pClass->get_new_text = NULL;
pClass->output = NULL;
pClass->delete_text = NULL;
- pClass->start_compose = NULL;
- pClass->end_compose = NULL;
pClass->get_context = NULL;
pClass->get_offset = NULL;
pClass->ctrl_move = NULL;
@@ -179,19 +177,6 @@ dasher_editor_delete(DasherEditor *pSelf, int iLength, int iOffset) {
DASHER_EDITOR_GET_CLASS(pSelf)->delete_text(pSelf, iLength, iOffset);
}
-void
-dasher_editor_start_compose(DasherEditor *pSelf) {
- if(DASHER_EDITOR_GET_CLASS(pSelf)->start_compose)
- DASHER_EDITOR_GET_CLASS(pSelf)->start_compose(pSelf);
-}
-
-void
-dasher_editor_end_compose(DasherEditor *pSelf, bool bKeep) {
- if(DASHER_EDITOR_GET_CLASS(pSelf)->end_compose)
- DASHER_EDITOR_GET_CLASS(pSelf)->end_compose(pSelf, bKeep);
-}
-
-
const gchar *
dasher_editor_get_context(DasherEditor *pSelf, int iOffset, int iLength) {
if(DASHER_EDITOR_GET_CLASS(pSelf)->get_context)
diff --git a/Src/Gtk2/dasher_editor.h b/Src/Gtk2/dasher_editor.h
index 65d42cc..1c7efd2 100644
--- a/Src/Gtk2/dasher_editor.h
+++ b/Src/Gtk2/dasher_editor.h
@@ -39,8 +39,6 @@ struct _DasherEditorClass {
const gchar *(*get_new_text)(DasherEditor *);
void (*output)(DasherEditor *, const gchar *, int);
void (*delete_text)(DasherEditor *, int, int);
- void (*start_compose)(DasherEditor *);
- void (*end_compose)(DasherEditor *, bool);
const gchar *(*get_context)(DasherEditor *, int, int);
gint (*get_offset)(DasherEditor *);
void (*handle_parameter_change)(DasherEditor *, gint);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]