aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2010-06-11 07:56:34 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2010-06-11 07:56:34 +0000
commit6d0adc3a3c352ef624b865c88f30d332b9ad2073 (patch)
treefffafd08e89c9a342175fc6b11f58f75461cee67 /src
parentcbbe2cb3b468a8bdf8225657fb7d522e133ee24c (diff)
fixed syl_plugin_folderview_add_sub_widget() and updated test plug-in.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@2570 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'src')
-rw-r--r--src/folderview.c2
-rw-r--r--src/plugin.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/folderview.c b/src/folderview.c
index 7585a45b..d71bd2cd 100644
--- a/src/folderview.c
+++ b/src/folderview.c
@@ -580,6 +580,8 @@ void folderview_add_sub_widget(FolderView *folderview, GtkWidget *widget)
g_return_if_fail(folderview != NULL);
g_return_if_fail(widget != NULL);
+ debug_print("folderview_add_sub_widget: adding sub widget\n");
+
gtk_box_pack_start(GTK_BOX(folderview->vbox), widget, FALSE, FALSE, 0);
}
diff --git a/src/plugin.c b/src/plugin.c
index d7af9810..8c711d14 100644
--- a/src/plugin.c
+++ b/src/plugin.c
@@ -556,7 +556,7 @@ void syl_plugin_folderview_add_sub_widget(GtkWidget *widget)
folderview = syl_plugin_folderview_get();
if (folderview) {
- GETFUNC("folderview_get");
+ GETFUNC("folderview_add_sub_widget");
SAFE_CALL_ARG2(func, folderview, widget);
}
}