~noskcaj/ubuntu/vivid/gthumb/flickr-https

« back to all changes in this revision

Viewing changes to extensions/find_duplicates/actions.c

  • Committer: Package Import Robot
  • Author(s): Jackson Doak
  • Date: 2014-04-08 06:31:09 UTC
  • mfrom: (1.3.20)
  • Revision ID: package-import@ubuntu.com-20140408063109-tk845map8ji6uxvd
Tags: 3:3.3.1.is.3.2.7-0ubuntu1
* Revert to newest upstream stable release. LP: #1290691
  - Refresh patches

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
#include <config.h>
24
24
#include <glib/gi18n.h>
25
25
#include <gthumb.h>
26
 
#include "actions.h"
27
26
#include "dlg-find-duplicates.h"
28
27
 
29
28
 
30
29
void
31
 
gth_browser_activate_find_duplicates (GSimpleAction     *action,
32
 
                                      GVariant          *parameter,
33
 
                                      gpointer           user_data)
 
30
gth_browser_activate_action_edit_find_duplicates (GtkAction  *action,
 
31
                                                  GthBrowser *browser)
34
32
{
35
 
        dlg_find_duplicates (GTH_BROWSER (user_data));
 
33
        dlg_find_duplicates (browser);
36
34
}