[gtksourceviewmm] Change SourceCompletionInfo to CompletionInfo.



commit 17ea152b0b744ceb6271bf948711e15e5e25220b
Author: Krzesimir Nowak <qdlacz gmail com>
Date:   Sun Mar 27 15:42:05 2011 +0200

    Change SourceCompletionInfo to CompletionInfo.
    
    * gtksourceview/src/sourcecompletioninfo.[hg|ccg]: Ran source_truncate.pl
    on these and renamed them to...
    * gtksourceview/src/completioninfo.[hg|ccg]: ...these

 ...sourcecompletioninfo.ccg => completioninfo.ccg} |    8 ++++----
 .../{sourcecompletioninfo.hg => completioninfo.hg} |   18 +++++++++---------
 2 files changed, 13 insertions(+), 13 deletions(-)
---
diff --git a/gtksourceview/src/sourcecompletioninfo.ccg b/gtksourceview/src/completioninfo.ccg
similarity index 84%
rename from gtksourceview/src/sourcecompletioninfo.ccg
rename to gtksourceview/src/completioninfo.ccg
index d34eedd..087c3b0 100644
--- a/gtksourceview/src/sourcecompletioninfo.ccg
+++ b/gtksourceview/src/completioninfo.ccg
@@ -1,6 +1,6 @@
-/* sourcecompletioninfo.cc
+/* completioninfo.cc
  *
- * Copyright (C) 2009, 2010 Krzesimir Nowak
+ * Copyright (C) 2009, 2010, 2011 Krzesimir Nowak
  *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Library General Public
@@ -22,12 +22,12 @@
 namespace Gsv
 {
 
-SourceCompletionInfo::SourceCompletionInfo() :
+CompletionInfo::CompletionInfo() :
   _CONSTRUCT("type", GTK_WINDOW_POPUP)
 {}
 
 void
-SourceCompletionInfo::move_to_iter(const Gtk::TextView& view)
+CompletionInfo::move_to_iter(const Gtk::TextView& view)
 {
   gtk_source_completion_info_move_to_iter(gobj(), const_cast<GtkTextView*>(view.gobj()), 0);
 }
diff --git a/gtksourceview/src/sourcecompletioninfo.hg b/gtksourceview/src/completioninfo.hg
similarity index 85%
rename from gtksourceview/src/sourcecompletioninfo.hg
rename to gtksourceview/src/completioninfo.hg
index 3a531be..531c9bd 100644
--- a/gtksourceview/src/sourcecompletioninfo.hg
+++ b/gtksourceview/src/completioninfo.hg
@@ -1,6 +1,6 @@
-/* sourcecompletioninfo.h
+/* completioninfo.h
  *
- * Copyright (C) 2009, 2010 Krzesimir Nowak
+ * Copyright (C) 2009, 2010, 2011 Krzesimir Nowak
  *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Library General Public
@@ -35,22 +35,22 @@ namespace Gsv
  *
  * @newin{2,10}
  */
-class SourceCompletionInfo : public Gtk::Window
+class CompletionInfo : public Gtk::Window
 {
-  _CLASS_GTKOBJECT(SourceCompletionInfo, GtkSourceCompletionInfo, GTK_SOURCE_COMPLETION_INFO, Gtk::Window, GtkWindow)
+  _CLASS_GTKOBJECT(CompletionInfo, GtkSourceCompletionInfo, GTK_SOURCE_COMPLETION_INFO, Gtk::Window, GtkWindow)
 
 public:
-  /** Creates new SourceCompletionInfo popup window.
+  /** Creates new CompletionInfo popup window.
    *
-   * @return The new SourceCompletionInfo.
+   * @return The new CompletionInfo.
    *
    * @newin{2,10}
    */
-  SourceCompletionInfo();
+  CompletionInfo();
 
 #m4 _CONVERSION(`const Gtk::TextView&',`GtkTextView*',`const_cast<GtkTextView*>(($3).gobj())')
 #m4 _CONVERSION(`const Gtk::TextIter&',`GtkTextIter*',`const_cast<GtkTextIter*>(($3).gobj())')
-  /** Moves the SourceCompletionInfo to @a iter. Moving will respect the
+  /** Moves the CompletionInfo to @a iter. Moving will respect the
    * Gdk::Gravity setting of the info window and will ensure the line at @a iter
    * is not occluded by the window.
    *
@@ -61,7 +61,7 @@ public:
    */
   _WRAP_METHOD(void move_to_iter(const Gtk::TextView& view, const Gtk::TextIter& iter), gtk_source_completion_info_move_to_iter)
 
-  /** Moves the Gtk::SourceCompletionInfo to the cursor position. Moving will
+  /** Moves the Gtk::CompletionInfo to the cursor position. Moving will
    * respect the Gdk::Gravity setting of the info window and will ensure the
    * line at cursor position is not occluded by the window.
    *



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