~ubuntu-branches/ubuntu/wily/modem-manager-gui/wily

« back to all changes in this revision

Viewing changes to src/scan-page.c

  • Committer: Package Import Robot
  • Author(s): Graham Inggs
  • Date: 2015-10-13 16:38:46 UTC
  • mfrom: (1.1.2)
  • Revision ID: package-import@ubuntu.com-20151013163846-gqa4p3zs6dmfyh9j
Tags: 0.0.18-1
* New upstream release, includes:
  - Fix crash on NULL strings (Closes: #764693)
  - Fix libebook 3.16 API break (Closes: #790494)
* Add Build-Depends on libgtkspell3-3-dev and
  let modem-manager-gui Depends on policykit-1.
* Drop patches:
  - fix-hyphen-used-as-minus-sign.patch, fixed upstream
  - missing-ofono-pkg-config.patch, fixed in ofono (cf. #763111)
* Update my email address, copyright years.

Show diffs side-by-side

added added

removed removed

Lines of Context:
41
41
        if (mmguiapp == NULL) return;
42
42
        
43
43
        if (mmguicore_networks_scan(mmguiapp->core)) {
44
 
                mmgui_main_ui_progress_dialog_open(mmguiapp);
 
44
                mmgui_ui_infobar_show(mmguiapp, _("Scanning networks..."), MMGUI_MAIN_INFOBAR_TYPE_PROGRESS);
45
45
        } else {
46
 
                mmgui_main_ui_error_dialog_open(mmguiapp, _("<b>Error scanning network</b>"), _("Device error"));
 
46
                mmgui_ui_infobar_show_result(mmguiapp, MMGUI_MAIN_INFOBAR_RESULT_FAIL, _("Device error"));
47
47
        }
48
48
}
49
49