summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* GtkTrayIconX11: Some more refactoringMatthias Clasen2011-08-281-14/+12
| | | | I like my refactoring better...
* trayicon-x11: Refactor code a bitBenjamin Otte2011-08-281-5/+6
| | | | Should make it more obvious what the code actually does.
* trayicon-x11: Fix warnings when visual is not available.Vincent Bernat2011-08-281-3/+6
| | | | | | | | This fixes a regression introduced in commit b1a1685a33eca16979e63d79915395af0b36. gdk_visual_get_*_pixel_details() should not be called with a NULL visual. https://bugzilla.gnome.org/show_bug.cgi?id=649588
* [l10n] Updated German translationMario Blättermann2011-08-281-2021/+1650
|
* More include cleanupsMatthias Clasen2011-08-2813-20/+14
|
* More include cleanupsMatthias Clasen2011-08-281-1/+0
|
* Clean up unneeded includesMatthias Clasen2011-08-289-30/+15
|
* GtkPrintUnixDialog: Replace GtkTable by GtkGridMatthias Clasen2011-08-281-200/+124
|
* GtkFileChooserDefault: Replace GtkTable by GtkGridMatthias Clasen2011-08-281-20/+10
|
* GtkMountOperation: Replace GtkTable by GtkGridMatthias Clasen2011-08-281-9/+7
|
* GtkPageSetupUnixDialog: replace GtkTable by GtkGridMatthias Clasen2011-08-281-283/+268
|
* GtkColorSel: replace GtkTable by GtkGridMatthias Clasen2011-08-281-17/+16
|
* Fix the buildMatthias Clasen2011-08-271-1/+1
|
* GtkToolbar: partial fix for toolbar editingMatthias Clasen2011-08-271-0/+3
| | | | | | | When using an editable toolbar in evince, we can end up in gtk_toolbar_get_visible() position with item being the highlight_tool_item, but not one of the regular children. So, handle that.
* Make gtk_status_icon_set_name() work reliablyMatthias Clasen2011-08-271-1/+12
|
* Silence a compiler warningMatthias Clasen2011-08-271-0/+1
|
* Revert "GtkColorButton: Don't forget to close a cairo context"Matthias Clasen2011-08-271-2/+0
| | | | This reverts commit 144e4af8bc583af536851bf6b11daaad8b5e4435.
* Updated Traditional Chinese translation(Hong Kong and Taiwan)Chao-Hsiung Liao2011-08-272-2808/+3058
|
* Updated POTFILES.skipPiotr Drąg2011-08-272-0/+4
|
* reftests: Add a test for the recent notebook fixBenjamin Otte2011-08-273-0/+148
|
* notebook: Fix child property setters causing underallocationsBenjamin Otte2011-08-271-1/+1
| | | | Don't randomly allocate around, queue resizes instead.
* Merge branch 'bgo593793-filechooser-recent-folders-master'Federico Mena Quintero2011-08-261-35/+10
|\
| * bgo#657186 - Sort the recent-files list in newest-to-oldest orderFederico Mena Quintero2011-08-261-0/+1
| | | | | | | | | | | | Otherwise it's not very useful... :) Signed-off-by: Federico Mena Quintero <federico@gnome.org>
| * Load and populate the recent-items in a single passFederico Mena Quintero2011-08-261-23/+9
| | | | | | | | | | | | | | There's no real asynchronicity going on, anyway, so let's do both within a single iteration of the idle handler. Signed-off-by: Federico Mena Quintero <federico@gnome.org>
| * Don't sort the recent-items by handFederico Mena Quintero2011-08-261-12/+0
| | | | | | | | | | | | | | | | The mtime from GtkRecentManager may not the same as the file's actual mtime, so the final result could appear unsorted to the user. Instead, we will let the view do the sorting. Signed-off-by: Federico Mena Quintero <federico@gnome.org>
* | Avoid dereferencing NULL pointer in gtk_label_drag_data_get()Tristan Van Berkom2011-08-261-1/+2
| | | | | | | | | | | | It's possible the GtkLabel receives drag'n'drop related signals if it was setup to receive them by a container or other external code, just avoid dereferencing priv->select_info in this case.
* | tests: Add test for non-nullterminated gtk_css_provider_load_data()Michael Terry2011-08-262-0/+70
| | | | | | | | https://bugzilla.gnome.org/show_bug.cgi?id=657359
* | styleproperty: Improve error messageBenjamin Otte2011-08-261-1/+1
| | | | | | | | | | We do dsupport that feature still and don't want to scare people into thinking everything broke.
* | API: cssprovider: Change parsing-error signalBenjamin Otte2011-08-267-81/+98
| | | | | | | | | | Instead of path, line and position, emit the section the error happened in. This has a lot more information to consume.
* | cssparser: Fix cases where we could overrun the terminating 0Benjamin Otte2011-08-261-3/+8
| |
* | cssparser: Make lines and positions 0-indexedBenjamin Otte2011-08-262-2/+2
| |
* | cssprovider: Store sections with parsed valuesBenjamin Otte2011-08-262-50/+70
| | | | | | | | | | | | Also create a separate section for values to associate the values with. Finally, use this section information when delayed-parsing a widget style property.
* | cssprovider: Handle non-NULL-terminated dataBenjamin Otte2011-08-261-20/+32
| | | | | | | | Do a dumb copy if that happens.
* | cssprovider: Keep only the curent section while parsingBenjamin Otte2011-08-261-19/+24
| | | | | | | | | | We don't need a list of sections, the section can give us the parent when we need it (d'oh).
* | cssprovider: Remove dead codeBenjamin Otte2011-08-261-28/+0
| | | | | | | | The code isn't used anymore since the introduction of rulesets.
* | API: css: Add GtkCssSectionBenjamin Otte2011-08-268-17/+558
| | | | | | | | | | | | This struct keeps track of an area of text in a CSS file and uses it when specifying information. Also, the cssprovider keeps track of sections when parsing a file.
* | Squash two compilation warnings about possibly-uninitialzedColin Walters2011-08-252-2/+2
| |
* | Updated Russian translationYuri Myasoedov2011-08-251-2378/+2308
| |
* | Signalify (already existing) GtkMenuShell.insert()Ryan Lortie2011-08-251-6/+27
| | | | | | | | | | | | | | | | | | gtk_menu_shell_insert() is a virtual function that was being directly invoked from the class vtable. Turn it into a proper signal and emit it in the usual way. https://bugzilla.gnome.org/show_bug.cgi?id=656565
* | gtk+.doap: Add some more infoJavier Jardón2011-08-251-0/+15
| |
* | Updated Galician translationsFran Dieguez2011-08-242-145/+157
| |
* | Updated Spanish translationDaniel Mustieles2011-08-241-225/+228
| |
* | Updated Spanish translationDaniel Mustieles2011-08-241-55/+63
| |
* | Updated Norwegian bokmål translationKjartan Maraas2011-08-241-211/+202
| |
* | Update gtk/Makefile.amChun-wei Fan2011-08-241-1/+2
| | | | | | | | Distribute fallback implementation source file for rint()/round()
* | Use a weak ref in GtkAccelLabelMatthias Clasen2011-08-241-18/+34
| | | | | | | | | | | | | | GtkAccelLabel was holding a strong reference on its parent, which could, depending on the circumstances, lead to leaks. https://bugzilla.gnome.org/show_bug.cgi?id=344858
* | Trivial: whitespace fixesMatthias Clasen2011-08-241-245/+245
| |
* | Trivial: Silence a compiler warningMatthias Clasen2011-08-241-4/+4
| |
* | Trivial: Silence a compiler warningMatthias Clasen2011-08-241-1/+1
| |
* | GtkColorButton: Don't forget to close a cairo contextMatthias Clasen2011-08-241-0/+2
| | | | | | | | Patch by Jerome Lambourg, bug 655392.