updated FSF address in COPYING, replaced "Members" by "Methods" to make it clearer

git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@417 ea778897-0a13-0410-b9d1-a72fbfd435f5
master
Enrico Tröger 2006-06-06 17:53:03 +00:00
parent aa11a5e60c
commit 4b66194a4f
3 changed files with 4 additions and 3 deletions

View File

@ -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 @@ the "copyright" line and a pointer to where the full notice is found.
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.

View File

@ -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>

View File

@ -148,7 +148,7 @@ void treeviews_init_tag_list(gint idx)
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);