summaryrefslogtreecommitdiff
path: root/libreofficekit
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-11-13 10:41:32 +0100
committerStephan Bergmann <sbergman@redhat.com>2015-11-13 10:41:32 +0100
commitc6c8af5ef46e2178e4b9abcd95f76c8df2db2732 (patch)
tree853a5217ac948f82ed668a27f455be6b84736550 /libreofficekit
parentb957190edfc40e1fea99e4781c95aea0bd6fce5e (diff)
loplugin:nullptr
Change-Id: Iaf779157b97e4d3a3a449cc7f17e4d5c533955f0
Diffstat (limited to 'libreofficekit')
-rw-r--r--libreofficekit/source/gtk/lokdocview.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/libreofficekit/source/gtk/lokdocview.cxx b/libreofficekit/source/gtk/lokdocview.cxx
index 0a7e8b8dda56..5c5336da1fe3 100644
--- a/libreofficekit/source/gtk/lokdocview.cxx
+++ b/libreofficekit/source/gtk/lokdocview.cxx
@@ -2269,7 +2269,7 @@ static void lok_doc_view_class_init (LOKDocViewClass* pClass)
G_TYPE_FROM_CLASS(pGObjectClass),
G_SIGNAL_RUN_FIRST,
0,
- NULL, NULL,
+ nullptr, nullptr,
g_cclosure_marshal_VOID__STRING,
G_TYPE_NONE, 1,
G_TYPE_STRING);
@@ -2346,7 +2346,7 @@ SAL_DLLPUBLIC_EXPORT void
lok_doc_view_set_zoom (LOKDocView* pDocView, float fZoom)
{
LOKDocViewPrivate& priv = getPrivate(pDocView);
- GError* error = NULL;
+ GError* error = nullptr;
priv->m_fZoom = fZoom;
long nDocumentWidthPixels = twipToPixel(priv->m_nDocumentWidthTwips, fZoom);
@@ -2361,7 +2361,7 @@ lok_doc_view_set_zoom (LOKDocView* pDocView, float fZoom)
nDocumentHeightPixels);
// Update the client's view size
- GTask* task = g_task_new(pDocView, NULL, NULL, NULL);
+ GTask* task = g_task_new(pDocView, nullptr, nullptr, nullptr);
LOEvent* pLOEvent = new LOEvent(LOK_SET_CLIENT_ZOOM);
pLOEvent->m_nTilePixelWidth = nTileSizePixels;
pLOEvent->m_nTilePixelHeight = nTileSizePixels;
@@ -2370,7 +2370,7 @@ lok_doc_view_set_zoom (LOKDocView* pDocView, float fZoom)
g_task_set_task_data(task, pLOEvent, LOEvent::destroy);
g_thread_pool_push(priv->lokThreadPool, g_object_ref(task), &error);
- if (error != NULL)
+ if (error != nullptr)
{
g_warning("Unable to call LOK_SET_CLIENT_ZOOM: %s", error->message);
g_clear_error(&error);