aboutsummaryrefslogtreecommitdiffstats
path: root/src/empathy-import-widget.c
Commit message (Collapse)AuthorAgeFilesLines
* include telepathy-glib.hGuillaume Desmottes2012-09-171-2/+1
| | | | | tp-glib 1.0 will enforce to only include telepathy-glib.h so best doing it to reduce the delta with the future stable branch.
* use tp_account_manager_dup_valid_accounts()Guillaume Desmottes2012-09-111-2/+2
| | | | | | tp_account_manager_get_valid_accounts() has been deprecated. Fix an accounts list leak in empathy-sanity-cleaning.
* import-widget: use gtk_list_store_insert_with_values()Guillaume Desmottes2012-03-291-4/+1
|
* import-widget: request the preferred height of the treeviewGuillaume Desmottes2012-03-271-0/+10
| | | | | | We should try to display as much rows as possible. https://bugzilla.gnome.org/show_bug.cgi?id=672839
* import-widget: don't manually prepare the account managerGuillaume Desmottes2012-03-271-23/+4
| | | | | | empathy-accounts already does it for us. https://bugzilla.gnome.org/show_bug.cgi?id=672839
* Pass EmpathyConnectionManagers to the import widgetGuillaume Desmottes2012-02-161-21/+23
| | | | | | | | | The widget doesn't have to prepare EmpathyConnectionManagers itself any more and so can populate its treeview right away. By doing so it will request a more decent size and so the dialog will actually display the accounts which can be imported without forcing user to resize it. https://bugzilla.gnome.org/show_bug.cgi?id=670201
* import-widget: use the server in IRC account display nameGuillaume Desmottes2011-12-161-4/+18
| | | | | | | User generally use the same nick on different servers so just displaying the nick isn't very useful. https://bugzilla.gnome.org/show_bug.cgi?id=654171
* Use tp_proxy_prepare_async instead of tp_account_manager_prepare_asyncGuillaume Desmottes2011-09-191-2/+2
|
* enable imported Pidgin accounts if needed (#594145)Vitaly Minko2010-10-111-1/+10
|
* Use library i18n method for source files included in shared libraryRob Bradford2010-05-181-1/+3
| | | | | | | Since these files are included in the g-c-c shared module we must use the version of the _ macro that includes the domain. Fixes: https://bugzilla.gnome.org/show_bug.cgi?id=618969
* replace empathy_connection_managers_call_when_ready by ↵Guillaume Desmottes2010-01-221-5/+6
| | | | prepare_{async_finish} functions
* empathy-import-widget: use empathy_connection_managers_call_when_readyGuillaume Desmottes2010-01-221-9/+10
|
* all: log error messages if preparing the account manager failsJonny Lamb2009-10-301-2/+7
| | | | Signed-off-by: Jonny Lamb <jonnylamb@gnome.org>
* import-widget: port to new tp-glib account APIJonny Lamb2009-10-241-27/+30
| | | | Signed-off-by: Jonny Lamb <jonnylamb@gnome.org>
* Move accounts assignment after the CMS are readyCosimo Cecchi2009-09-141-2/+2
|
* Move protocol_is_supported() to empathy-import-utilsCosimo Cecchi2009-09-141-26/+5
|
* Fix errors revealed by make checkJonathan Tellier2009-08-221-2/+2
| | | | | - Added missing files in po/POTFILES.in - Fixed style
* Make the import system more future-proofCosimo Cecchi2009-08-221-15/+67
| | | | | | | | | Split the utilities from the widget and the dialog; we now have an enum for supported applications, with a special value which means "all applications", which is the only one which triggers showing the "Source" column in EmpathyImportWidget. We need this to avoid being redundant in the EmpathyAccountAssistant, as we already choose there the application from which to import.
* Split EmpathyImportDialog and EmpathyImportWidgetCosimo Cecchi2009-08-221-0/+464
Also, take this as a chance to GObject-ify everything.