From: Philip Chimento Date: Sat, 25 Aug 2012 19:04:04 +0000 (+0200) Subject: Replace deprecated signals X-Git-Tag: v0.9~25 X-Git-Url: https://git.stderr.nl/gitweb?a=commitdiff_plain;h=7f5205d4bee2fbc2ca2b9e26b961d37b2d656c55;hp=7f5205d4bee2fbc2ca2b9e26b961d37b2d656c55;p=projects%2Fchimara%2Fchimara.git Replace deprecated signals The 'size-request' and 'expose-event' signals now don't exist anymore. 'expose-event' is simply replaced by 'draw'. We used 'size-request' in a slightly different way than it was supposed to be: connecting a handler after the default 'size-request' handler run, ensured that the handler was run after the GtkTextView finished validating text positions, so we could scroll the text view to the end after printing text to it. Luckily, 'size-allocate' works the same way in GTK 3. ---