aboutsummaryrefslogtreecommitdiffstats
path: root/widgets
diff options
context:
space:
mode:
authorSrinivasa Ragavan <sragavan@novell.com>2005-08-11 12:24:17 +0800
committerSrinivasa Ragavan <sragavan@src.gnome.org>2005-08-11 12:24:17 +0800
commitd3346e28f758a400fb4b31e16fcc11f059a5f9b1 (patch)
tree34abf9782f2cc0c2e5dcf0e5b2b27a0fa8e9b5ea /widgets
parenta80ff8ee769b26022592bcbe173957fa31f34e61 (diff)
downloadgsoc2013-evolution-d3346e28f758a400fb4b31e16fcc11f059a5f9b1.tar
gsoc2013-evolution-d3346e28f758a400fb4b31e16fcc11f059a5f9b1.tar.gz
gsoc2013-evolution-d3346e28f758a400fb4b31e16fcc11f059a5f9b1.tar.bz2
gsoc2013-evolution-d3346e28f758a400fb4b31e16fcc11f059a5f9b1.tar.lz
gsoc2013-evolution-d3346e28f758a400fb4b31e16fcc11f059a5f9b1.tar.xz
gsoc2013-evolution-d3346e28f758a400fb4b31e16fcc11f059a5f9b1.tar.zst
gsoc2013-evolution-d3346e28f758a400fb4b31e16fcc11f059a5f9b1.zip
Added a function to force refresh/resize the icons.
2005-08-11 Srinivasa Ragavan <sragavan@novell.com> * e-attachment-bar.[ch] (e_attachment_bar_refresh): Added a function to force refresh/resize the icons. svn path=/trunk/; revision=30082
Diffstat (limited to 'widgets')
-rw-r--r--widgets/misc/ChangeLog5
-rw-r--r--widgets/misc/e-attachment-bar.c6
-rw-r--r--widgets/misc/e-attachment-bar.h1
3 files changed, 12 insertions, 0 deletions
diff --git a/widgets/misc/ChangeLog b/widgets/misc/ChangeLog
index ebacdecdf0..45ec4f3921 100644
--- a/widgets/misc/ChangeLog
+++ b/widgets/misc/ChangeLog
@@ -1,3 +1,8 @@
+2005-08-11 Srinivasa Ragavan <sragavan@novell.com>
+
+ * e-attachment-bar.[ch] (e_attachment_bar_refresh): Added a function
+ to force refresh/resize the icons.
+
2005-08-02 David Malcolm <dmalcolm@redhat.com>
* e-attachment-bar.c: (update_remote_file): escape the "%" character
diff --git a/widgets/misc/e-attachment-bar.c b/widgets/misc/e-attachment-bar.c
index df13b456e6..c268724759 100644
--- a/widgets/misc/e-attachment-bar.c
+++ b/widgets/misc/e-attachment-bar.c
@@ -488,6 +488,12 @@ e_attachment_bar_remove_selected (EAttachmentBar *bar)
}
void
+e_attachment_bar_refresh (EAttachmentBar *bar)
+{
+ update (bar);
+}
+
+void
e_attachment_bar_edit_selected (EAttachmentBar *bar)
{
GnomeIconList *icon_list;
diff --git a/widgets/misc/e-attachment-bar.h b/widgets/misc/e-attachment-bar.h
index c9ad12061c..d3896015be 100644
--- a/widgets/misc/e-attachment-bar.h
+++ b/widgets/misc/e-attachment-bar.h
@@ -81,6 +81,7 @@ void e_attachment_bar_remove_selected (EAttachmentBar *bar);
GtkWidget ** e_attachment_bar_get_selector(EAttachmentBar *bar);
GSList *e_attachment_bar_get_parts (EAttachmentBar *bar);
GSList *e_attachment_bar_get_selected (EAttachmentBar *bar);
+void e_attachment_bar_refresh (EAttachmentBar *bar);
#ifdef __cplusplus
}
#endif /* __cplusplus */