aboutsummaryrefslogtreecommitdiffstats
path: root/e-util/e-alert-dialog.c
Commit message (Collapse)AuthorAgeFilesLines
* Prevent future bugs like #612792.Matthew Barnes2010-03-151-6/+6
| | | | | | Add G_GNUC_NULL_TERMINATED to EAlert functions with variable-length parameter lists and drop the unnecessary "arg0" parameter so the function attribute works correctly.
* Add option to escape EAlert strings.Matthew Barnes2010-02-181-3/+3
| | | | | | EAlertDialog wants the primary and secondary strings escaped for use in markup text, EActivityProxy does not use markup. So make it an explicit part of the EAlert API.
* Remove dead assignments found by clang.Matthew Barnes2010-01-161-1/+1
|
* Coding style and whitespace cleanup.Matthew Barnes2009-12-201-2/+0
|
* Use EAlert API in EAlertActivity rather than using g_object_get_dataJonathon Jongsma2009-12-091-10/+23
| | | | | | | | previously we were storing the EAlert's primary and secondary text in the dialog object (using g_object_set_data_full). Since EAlertDialog encapsulates an EAlert and we have access to the underlying EAlert object, we can just use the EAlert API to get the primary and secondary text rather than storing duplicates copies of it in the dialog.
* BugĀ 604098 - Missing \n in EAlertJonathon Jongsma2009-12-091-1/+1
| | | | Fix another minor regression from my EAlert refactoring
* rename e_alert_get_buttons -> e_alert_peek_buttonsJonathon Jongsma2009-12-091-1/+1
| | | | | Make it obvious that this does not need to be freed like the other things that use get_* (e.g. e_alert_get_title)
* Add EAlertDialogJonathon Jongsma2009-12-081-0/+362
This is a proper implementation of the various alert dialog helper functions. It is a proper subclass of GtkDialog, etc.