[geary/wip/765516-gtk-widget-conversation-viewer: 27/119] Fix "How does the code know the size to allocate" warning.
- From: Michael Gratton <mjog src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [geary/wip/765516-gtk-widget-conversation-viewer: 27/119] Fix "How does the code know the size to allocate" warning.
- Date: Mon, 15 Aug 2016 00:18:43 +0000 (UTC)
commit 9493cf1da0035fcf61cef23d8223402120b0268d
Author: Michael James Gratton <mike vee net>
Date: Fri Apr 15 19:51:11 2016 +1000
Fix "How does the code know the size to allocate" warning.
.../conversation-viewer/conversation-web-view.vala | 4 ++++
1 files changed, 4 insertions(+), 0 deletions(-)
---
diff --git a/src/client/conversation-viewer/conversation-web-view.vala
b/src/client/conversation-viewer/conversation-web-view.vala
index 70a428a..f4cc8dd 100644
--- a/src/client/conversation-viewer/conversation-web-view.vala
+++ b/src/client/conversation-viewer/conversation-web-view.vala
@@ -64,6 +64,10 @@ public class ConversationWebView : StylishWebView {
// only once loaded.
public override void get_preferred_height(out int minimum_height,
out int natural_height) {
+ // Silence the "How does the code know the size to allocate?"
+ // warning in GTK 3.20-ish.
+ base.get_preferred_height(out minimum_height, out natural_height);
+
int preferred_height = 0;
if (load_status == WebKit.LoadStatus.FINISHED) {
preferred_height = (int) get_dom_document().get_body().offset_height;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]