Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
G
geany
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
geany
Commits
319a6355
Kaydet (Commit)
319a6355
authored
Kas 20, 2011
tarafından
Colomban Wendling
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Use GSlice to allocate cached tree iters
üst
ef0b0599
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
2 deletions
+8
-2
symbols.c
src/symbols.c
+8
-2
No files found.
src/symbols.c
Dosyayı görüntüle @
319a6355
...
...
@@ -1260,11 +1260,17 @@ static void update_parents_table(GHashTable *table, const TMTag *tag, const gcha
if
(
g_hash_table_lookup_extended
(
table
,
tag
->
name
,
NULL
,
NULL
)
&&
!
utils_str_equal
(
parent_name
,
tag
->
name
)
/* prevent Foo::Foo from making parent = child */
)
{
g_hash_table_insert
(
table
,
tag
->
name
,
g_
memdup
(
iter
,
sizeof
*
iter
));
g_hash_table_insert
(
table
,
tag
->
name
,
g_
slice_dup
(
GtkTreeIter
,
iter
));
}
}
static
void
free_iter_slice
(
gpointer
iter
)
{
g_slice_free
(
GtkTreeIter
,
iter
);
}
/*
* Updates the tag tree for a document with the tags in *list.
* @param doc a document
...
...
@@ -1295,7 +1301,7 @@ static void update_tree_tags(GeanyDocument *doc, GList **tags)
/* Build hash tables holding tags and parents */
/* parent table holds "tag-name":GtkTreeIter */
parents_table
=
g_hash_table_new_full
(
g_str_hash
,
g_str_equal
,
NULL
,
g_fre
e
);
parents_table
=
g_hash_table_new_full
(
g_str_hash
,
g_str_equal
,
NULL
,
free_iter_slic
e
);
/* tags table is another representation of the @tags list, TMTag:GList<TMTag> */
tags_table
=
g_hash_table_new_full
(
tag_hash
,
tag_equal
,
NULL
,
NULL
);
foreach_list
(
item
,
*
tags
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment