From c59de3973a3910b949528806dab6756f7ed92199 Mon Sep 17 00:00:00 2001 From: Miklos Vajna Date: Tue, 16 Jun 2015 11:34:36 +0200 Subject: [PATCH 052/398] lokdocview: couple for missing static_cast() Change-Id: I038c05c0d081f52e4ac90688f73397565413632d (cherry picked from commit 9dcd2d119ab67bde9de588c42db3805525d5f06a) --- libreofficekit/source/gtk/lokdocview.cxx | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/libreofficekit/source/gtk/lokdocview.cxx b/libreofficekit/source/gtk/lokdocview.cxx index 7031be9b6536..20b1aa6b837e 100644 --- a/libreofficekit/source/gtk/lokdocview.cxx +++ b/libreofficekit/source/gtk/lokdocview.cxx @@ -519,10 +519,7 @@ callback (gpointer pData) break; case LOK_CALLBACK_DOCUMENT_SIZE_CHANGED: { - g_info ("%d %d", priv->m_nDocumentWidthTwips, priv->m_nDocumentHeightTwips); - g_info ("startin"); payloadToSize(pCallback->m_aPayload.c_str(), priv->m_nDocumentWidthTwips, priv->m_nDocumentHeightTwips); - g_info ("%d %d", priv->m_nDocumentWidthTwips, priv->m_nDocumentHeightTwips); gtk_widget_set_size_request(GTK_WIDGET(pDocView), twipToPixel(priv->m_nDocumentWidthTwips, priv->m_fZoom), twipToPixel(priv->m_nDocumentHeightTwips, priv->m_fZoom)); @@ -1156,7 +1153,7 @@ static void lok_doc_view_class_init (LOKDocViewClass* pClass) "Document Path", "The URI of the document to open", 0, - G_PARAM_READWRITE)); + static_cast(G_PARAM_READWRITE))); /** * LOKDocView:editable: @@ -1169,7 +1166,7 @@ static void lok_doc_view_class_init (LOKDocViewClass* pClass) "Editable", "Whether the content is in edit mode or not", FALSE, - G_PARAM_READWRITE)); + static_cast(G_PARAM_READWRITE))); /** * LOKDocView:load-progress: @@ -1214,7 +1211,7 @@ static void lok_doc_view_class_init (LOKDocViewClass* pClass) "Is Loading", "Whether the view is loading a document", FALSE, - G_PARAM_READABLE)); + static_cast(G_PARAM_READABLE))); /** * LOKDocView:doc-width: @@ -1227,7 +1224,7 @@ static void lok_doc_view_class_init (LOKDocViewClass* pClass) "Document Width", "Width of the document in twips", 0, G_MAXLONG, 0, - G_PARAM_READWRITE)); + static_cast(G_PARAM_READWRITE))); /** * LOKDocView:doc-height: @@ -1240,7 +1237,7 @@ static void lok_doc_view_class_init (LOKDocViewClass* pClass) "Document Height", "Height of the document in twips", 0, G_MAXLONG, 0, - G_PARAM_READWRITE)); + static_cast(G_PARAM_READWRITE))); /** * LOKDocView:can-zoom-in: -- 2.12.0