Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | entrybuffer: Remove priv pointer | Timm Bäder | 2018-03-30 | 1 | -4/+0 |
| | |||||
* | Add annotations to gtk headers | Matthias Clasen | 2013-05-05 | 1 | -0/+13 |
| | | | | Add annotations to all exported functions in GTK+ headers. | ||||
* | Move single-include guards inside include guards | Matthias Clasen | 2012-12-28 | 1 | -3/+3 |
| | | | | | | gcc has optimizations for include guards that only work if they are outermost in the the header. https://bugzilla.gnome.org/show_bug.cgi?id=689810 | ||||
* | Change FSF Address | Javier Jardón | 2012-02-27 | 1 | -3/+1 |
| | |||||
* | gtk: Use const instead G_CONST_RETURN | Javier Jardón | 2011-06-10 | 1 | -1/+1 |
| | |||||
* | Add padding to class structs | Matthias Clasen | 2010-10-19 | 1 | -1/+3 |
| | |||||
* | Remove all traces of GDK_PIXBUF/GTK_DISABLE_SINGLE_INCLUDES | Michael Natterer | 2010-05-03 | 1 | -1/+1 |
| | | | | ...and disallow inclusion of individual files unconditionally. | ||||
* | Use G_CONST_RETURN for const return values | Matthias Clasen | 2009-07-15 | 1 | -1/+1 |
| | |||||
* | Make GtkEntryBuffer::max-length and int property | Matthias Clasen | 2009-07-15 | 1 | -2/+2 |
| | | | | | This avoid a behaviour change in a corner case and should not make any difference. | ||||
* | Revert 8031432c09c864d6fe635a8e8890c5221399fc4f | Matthias Clasen | 2009-07-12 | 1 | -1/+1 |
| | | | | | We can't disallow single-includes unconditionally because gtkentrybuffer.h is included in gtkentry.h. | ||||
* | Disallow single-include unconditionally because this is a new file | Michael Natterer | 2009-07-09 | 1 | -1/+1 |
| | |||||
* | GtkEntryBuffer holds text for GtkEntry | Stef Walter | 2009-07-08 | 1 | -0/+133 |
Adds a 'model' type buffer for GtkEntry in which the actual textual data is stored. GtkEntryBuffer can be subclassed. Among other things, this allows GtkEntry to be used for secrets that need to be stored in non-pageable memory. It also allows buffers to be shared by entries. See bug #576801. |