summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPranav Kant <pranavk@gnome.org>2015-07-26 17:22:13 +0530
committerAshod Nakashian <ashod.nakashian@collabora.co.uk>2016-02-07 22:02:17 -0500
commitb7ea2a0240e3748503db52e7a1640ebdbcad3272 (patch)
treed36ffdb308b498211fc430d23e63f66551059661
parentea48067aca11de6615bf740916b08ac8efa9d078 (diff)
lokdocview: Follow the camelCase naming convention
Change-Id: I05582d33ee3535d4b677fa8138c9d573585a4252 (cherry picked from commit ee0f4f75d2d95aaed8995337947c4cc665722aaf)
-rw-r--r--libreofficekit/source/gtk/lokdocview.cxx20
1 files changed, 10 insertions, 10 deletions
diff --git a/libreofficekit/source/gtk/lokdocview.cxx b/libreofficekit/source/gtk/lokdocview.cxx
index 3ff15c3036f1..df059c2f0427 100644
--- a/libreofficekit/source/gtk/lokdocview.cxx
+++ b/libreofficekit/source/gtk/lokdocview.cxx
@@ -1070,7 +1070,7 @@ lok_doc_view_signal_motion (GtkWidget* pWidget, GdkEventMotion* pEvent)
}
static void
-lok_doc_view_open_document_in_thread (gpointer data)
+openDocumentInThread (gpointer data)
{
GTask* task = G_TASK(data);
LOKDocView* pDocView = LOK_DOC_VIEW(g_task_get_source_object(task));
@@ -1119,7 +1119,7 @@ lok_doc_view_open_document_in_thread (gpointer data)
}
static void
-lok_doc_view_set_part_in_thread(gpointer data)
+setPartInThread(gpointer data)
{
GTask* task = G_TASK(data);
LOKDocView* pDocView = LOK_DOC_VIEW(g_task_get_source_object(task));
@@ -1131,7 +1131,7 @@ lok_doc_view_set_part_in_thread(gpointer data)
}
static void
-lok_doc_view_set_partmode_in_thread(gpointer data)
+setPartmodeInThread(gpointer data)
{
GTask* task = G_TASK(data);
LOKDocView* pDocView = LOK_DOC_VIEW(g_task_get_source_object(task));
@@ -1143,7 +1143,7 @@ lok_doc_view_set_partmode_in_thread(gpointer data)
}
static void
-lok_doc_view_set_edit_in_thread(gpointer data)
+setEditInThread(gpointer data)
{
GTask* task = G_TASK(data);
LOKDocView* pDocView = LOK_DOC_VIEW(g_task_get_source_object(task));
@@ -1165,7 +1165,7 @@ lok_doc_view_set_edit_in_thread(gpointer data)
}
static void
-lok_doc_view_post_command_in_thread (gpointer data)
+postCommandInThread (gpointer data)
{
GTask* task = G_TASK(data);
LOKDocView* pDocView = LOK_DOC_VIEW(g_task_get_source_object(task));
@@ -1230,19 +1230,19 @@ lokThreadFunc(gpointer data, gpointer /*user_data*/)
switch (pLOEvent->m_nType)
{
case LOK_LOAD_DOC:
- lok_doc_view_open_document_in_thread (task);
+ openDocumentInThread(task);
break;
case LOK_POST_COMMAND:
- lok_doc_view_post_command_in_thread (task);
+ postCommandInThread(task);
break;
case LOK_SET_EDIT:
- lok_doc_view_set_edit_in_thread(task);
+ setEditInThread(task);
break;
case LOK_SET_PART:
- lok_doc_view_set_part_in_thread(task);
+ setPartInThread(task);
break;
case LOK_SET_PARTMODE:
- lok_doc_view_set_partmode_in_thread(task);
+ setPartmodeInThread(task);
break;
case LOK_POST_KEY:
postKeyEventInThread(task);