diff options
author | Xan Lopez <xan@src.gnome.org> | 2009-02-21 16:15:17 +0800 |
---|---|---|
committer | Xan Lopez <xan@src.gnome.org> | 2009-02-21 16:15:17 +0800 |
commit | b28fa1512893dd8714fdfa6c4d00a95fc2b919ae (patch) | |
tree | b78ab870719d06d83200ed8af2136e5dae6ff8cc /embed | |
parent | 8ce694a511ccec498c1d3721a19aa99a9878b13a (diff) | |
download | gsoc2013-epiphany-b28fa1512893dd8714fdfa6c4d00a95fc2b919ae.tar.gz gsoc2013-epiphany-b28fa1512893dd8714fdfa6c4d00a95fc2b919ae.tar.zst gsoc2013-epiphany-b28fa1512893dd8714fdfa6c4d00a95fc2b919ae.zip |
downloader-view: use undeprecated gtk_status_icon_set_tooltip_text.
svn path=/trunk/; revision=8796
Diffstat (limited to 'embed')
-rw-r--r-- | embed/downloader-view.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/embed/downloader-view.c b/embed/downloader-view.c index 17dd5d11c..1b5f49a77 100644 --- a/embed/downloader-view.c +++ b/embed/downloader-view.c @@ -492,8 +492,8 @@ update_status_icon (DownloaderView *dv) "%d downloads", downloads), downloads); - gtk_status_icon_set_tooltip (dv->priv->status_icon, - downloadstring); + gtk_status_icon_set_tooltip_text (dv->priv->status_icon, + downloadstring); g_free (downloadstring); } |