summaryrefslogtreecommitdiff
path: root/src/gui/panels/regedit.c
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2014-09-04 21:28:31 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2014-09-04 21:28:31 (GMT)
commitfc7a3dfb87fba9ae031cb52fa5951e00c409b07e (patch)
tree45109fdeec00ba9c4555018c5694b0877dcbc6e3 /src/gui/panels/regedit.c
parent04ca0756d59629113bd3f602565850a2910ac84e (diff)
Updated the code and displayed the symbols using all symbols, not only routines.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@398 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/gui/panels/regedit.c')
-rw-r--r--src/gui/panels/regedit.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/gui/panels/regedit.c b/src/gui/panels/regedit.c
index 159a4d0..3819e64 100644
--- a/src/gui/panels/regedit.c
+++ b/src/gui/panels/regedit.c
@@ -358,7 +358,10 @@ static void g_regedit_panel_dispose(GRegeditPanel *panel)
static void g_regedit_panel_finalize(GRegeditPanel *panel)
{
if (panel->filter != NULL)
+ {
regfree(panel->filter);
+ free(panel->filter);
+ }
G_OBJECT_CLASS(g_regedit_panel_parent_class)->finalize(G_OBJECT(panel));
@@ -794,8 +797,8 @@ static void on_param_value_edited(GtkCellRendererText *renderer, gchar *path, gc
/******************************************************************************
* *
-* Paramètres : entry = entrée de texte contenant le filtre brut. *
-* panel = panneau assurant l'affichage des paramètres. *
+* Paramètres : entry = entrée de texte contenant le filtre brut. *
+* panel = panneau assurant l'affichage des paramètres. *
* *
* Description : Démarre l'actualisation du filtrage des paramètres. *
* *