]> git.pld-linux.org Git - packages/dasher.git/commitdiff
- applied upstream
authorSzymon Siwek <sls@pld-linux.org>
Fri, 11 Apr 2008 20:46:58 +0000 (20:46 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    dasher-action-speech.patch -> 1.2

dasher-action-speech.patch [deleted file]

diff --git a/dasher-action-speech.patch b/dasher-action-speech.patch
deleted file mode 100644 (file)
index 51bfdcf..0000000
+++ /dev/null
@@ -1,45 +0,0 @@
---- Src/Gtk2/dasher_action_speech.cpp  2007/09/25 22:31:10     1.1
-+++ Src/Gtk2/dasher_action_speech.cpp  2007/09/25 22:33:16
-@@ -28,8 +28,8 @@ typedef struct _DasherActionSpeechPrivat
- G_DEFINE_TYPE(DasherActionSpeech, dasher_action_speech, TYPE_DASHER_ACTION);
--static gboolean dasher_action_speech_execute(DasherAction *pSelf, DasherEditorInternal *pEditor, int iIdx);
--static gboolean dasher_action_speech_preview(DasherAction *pSelf, DasherEditorInternal *pEditor);
-+static gboolean dasher_action_speech_execute(DasherAction *pSelf, DasherEditor *pEditor, int iIdx);
-+static gboolean dasher_action_speech_preview(DasherAction *pSelf, DasherEditor *pEditor);
- static const gchar *dasher_action_speech_get_name(DasherAction *pSelf);
- static int dasher_action_speech_get_sub_count(DasherAction *pSelf);
- static const gchar *dasher_action_speech_get_sub_name(DasherAction *pSelf, int iIdx);
-@@ -66,17 +66,17 @@ dasher_action_speech_new() {
- }
- static gboolean 
--dasher_action_speech_execute(DasherAction *pSelf, DasherEditorInternal *pEditor, int iIdx) {
-+dasher_action_speech_execute(DasherAction *pSelf, DasherEditor *pEditor, int iIdx) {
-   DasherActionSpeechPrivate *pDasherActionSpeechPrivate = DASHER_ACTION_SPEECH_GET_PRIVATE(pSelf);
-   const char *szData;
-   switch(iIdx) {
-   case 0:
--    szData = dasher_editor_internal_get_all_text(pEditor);
-+    szData = dasher_editor_get_all_text(pEditor);
-     break;
-   case 1:
--    szData = dasher_editor_internal_get_new_text(pEditor);
-+    szData = dasher_editor_get_new_text(pEditor);
-     break;
-   case 2:
-     szData = pDasherActionSpeechPrivate->szLast;
-@@ -107,8 +107,8 @@ dasher_action_speech_execute(DasherActio
- }
- static gboolean 
--dasher_action_speech_preview(DasherAction *pSelf, DasherEditorInternal *pEditor) {
--  const gchar *szData = dasher_editor_internal_get_all_text(pEditor);
-+dasher_action_speech_preview(DasherAction *pSelf, DasherEditor *pEditor) {
-+  const gchar *szData = dasher_editor_get_all_text(pEditor);
-   if(!szData)
-     return false;
This page took 0.082957 seconds and 4 git commands to generate.