[latexila] CompletionProvider: remove default implementation methods



commit e630c8b4ee3d1091abd0a176bdd30fe12cd611ac
Author: SÃbastien Wilmet <swilmet src gnome org>
Date:   Tue Jul 26 02:19:19 2011 +0200

    CompletionProvider: remove default implementation methods
    
    They were there because the methods in the vapi were abstract. Now they
    are virtual so they can be removed.
    
    For more information, see:
    https://bugzilla.gnome.org/show_bug.cgi?id=628704

 src/completion.vala |   30 ------------------------------
 1 files changed, 0 insertions(+), 30 deletions(-)
---
diff --git a/src/completion.vala b/src/completion.vala
index b74aa2d..4b3b0d2 100644
--- a/src/completion.vala
+++ b/src/completion.vala
@@ -118,11 +118,6 @@ public class CompletionProvider : GLib.Object, SourceCompletionProvider
         return "LaTeX";
     }
 
-    public unowned Gdk.Pixbuf? get_icon ()
-    {
-        return null;
-    }
-
     public SourceCompletionActivation get_activation ()
     {
         SourceCompletionActivation ret = SourceCompletionActivation.USER_REQUESTED;
@@ -133,31 +128,6 @@ public class CompletionProvider : GLib.Object, SourceCompletionProvider
         return ret;
     }
 
-    public unowned Gtk.Widget? get_info_widget (SourceCompletionProposal proposal)
-    {
-        return null;
-    }
-
-    public void update_info (SourceCompletionProposal proposal, SourceCompletionInfo info)
-    {
-    }
-
-    public bool get_start_iter (SourceCompletionContext context,
-        SourceCompletionProposal proposal, TextIter iter)
-    {
-        return false;
-    }
-
-    public int get_interactive_delay ()
-    {
-        return -1;
-    }
-
-    public int get_priority ()
-    {
-        return 0;
-    }
-
     public bool match (SourceCompletionContext context)
     {
         first_populate = true;



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]