Revision: 417 Author: eht16 Date: 2006-06-06 10:53:03 -0700 (Tue, 06 Jun 2006) ViewCVS: http://svn.sourceforge.net/geany/?rev=417&view=rev
Log Message: ----------- updated FSF address in COPYING, replaced "Members" by "Methods" to make it clearer
Modified Paths: -------------- trunk/COPYING trunk/ChangeLog trunk/src/treeviews.c Modified: trunk/COPYING =================================================================== --- trunk/COPYING 2006-06-06 17:23:27 UTC (rev 416) +++ trunk/COPYING 2006-06-06 17:53:03 UTC (rev 417) @@ -2,7 +2,7 @@ Version 2, June 1991
Copyright (C) 1989, 1991 Free Software Foundation, Inc. - 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed.
@@ -305,7 +305,7 @@
You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Also add information on how to contact you by electronic and paper mail.
Modified: trunk/ChangeLog =================================================================== --- trunk/ChangeLog 2006-06-06 17:23:27 UTC (rev 416) +++ trunk/ChangeLog 2006-06-06 17:53:03 UTC (rev 417) @@ -2,6 +2,7 @@
* src/highlighting.c: enabled folding for markup filetypes (HTML, XML, PHP, DocBook) + * src/treeviews.c: replaced "Members" by "Methods" to make it clearer
2006-06-05 Nick Treleaven nick.treleaven@btinternet.com
Modified: trunk/src/treeviews.c =================================================================== --- trunk/src/treeviews.c 2006-06-06 17:23:27 UTC (rev 416) +++ trunk/src/treeviews.c 2006-06-06 17:53:03 UTC (rev 417) @@ -148,7 +148,7 @@ gtk_tree_store_append(doc_list[idx].tag_store, &(tv.tag_class), NULL); gtk_tree_store_set(doc_list[idx].tag_store, &(tv.tag_class), 0, _("Class"), -1); gtk_tree_store_append(doc_list[idx].tag_store, &(tv.tag_member), NULL); - gtk_tree_store_set(doc_list[idx].tag_store, &(tv.tag_member), 0, _("Members"), -1); + gtk_tree_store_set(doc_list[idx].tag_store, &(tv.tag_member), 0, _("Methods"), -1); gtk_tree_store_append(doc_list[idx].tag_store, &(tv.tag_macro), NULL); gtk_tree_store_set(doc_list[idx].tag_store, &(tv.tag_macro), 0, _("Macro"), -1); gtk_tree_store_append(doc_list[idx].tag_store, &(tv.tag_variable), NULL);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.