diff options
-rw-r--r-- | android/source/res/drawable/handle_end.png | bin | 1734 -> 0 bytes | |||
-rw-r--r-- | android/source/res/drawable/handle_middle.png | bin | 1850 -> 0 bytes | |||
-rw-r--r-- | android/source/res/drawable/handle_start.png | bin | 1676 -> 0 bytes | |||
-rw-r--r-- | libreofficekit/source/gtk/lokdocview.cxx | 6 |
4 files changed, 3 insertions, 3 deletions
diff --git a/android/source/res/drawable/handle_end.png b/android/source/res/drawable/handle_end.png Binary files differdeleted file mode 100644 index 32b77dfa6e26..000000000000 --- a/android/source/res/drawable/handle_end.png +++ /dev/null diff --git a/android/source/res/drawable/handle_middle.png b/android/source/res/drawable/handle_middle.png Binary files differdeleted file mode 100644 index 751eb898b136..000000000000 --- a/android/source/res/drawable/handle_middle.png +++ /dev/null diff --git a/android/source/res/drawable/handle_start.png b/android/source/res/drawable/handle_start.png Binary files differdeleted file mode 100644 index cf12a0dcdcf3..000000000000 --- a/android/source/res/drawable/handle_start.png +++ /dev/null diff --git a/libreofficekit/source/gtk/lokdocview.cxx b/libreofficekit/source/gtk/lokdocview.cxx index 6e9fc190e560..eebf6bc361e2 100644 --- a/libreofficekit/source/gtk/lokdocview.cxx +++ b/libreofficekit/source/gtk/lokdocview.cxx @@ -1081,7 +1081,7 @@ renderOverlay(LOKDocView* pDocView, cairo_t* pCairo) if (priv->m_bEdit && priv->m_bCursorVisible && !isEmptyRectangle(priv->m_aVisibleCursor) && priv->m_aTextSelectionRectangles.empty()) { // Have a cursor, but no selection: we need the middle handle. - gchar* handleMiddlePath = g_strconcat (priv->m_aLOPath, "/../..", CURSOR_HANDLE_DIR, "handle_middle.png", NULL); + gchar* handleMiddlePath = g_strconcat (priv->m_aLOPath, "/../..", CURSOR_HANDLE_DIR, "handle_image_middle.png", NULL); if (!priv->m_pHandleMiddle) { priv->m_pHandleMiddle = cairo_image_surface_create_from_png(handleMiddlePath); @@ -1109,7 +1109,7 @@ renderOverlay(LOKDocView* pDocView, cairo_t* pCairo) if (!isEmptyRectangle(priv->m_aTextSelectionStart)) { // Have a start position: we need a start handle. - gchar* handleStartPath = g_strconcat (priv->m_aLOPath, "/../..", CURSOR_HANDLE_DIR, "handle_start.png", NULL); + gchar* handleStartPath = g_strconcat (priv->m_aLOPath, "/../..", CURSOR_HANDLE_DIR, "handle_image_start.png", NULL); if (!priv->m_pHandleStart) { priv->m_pHandleStart = cairo_image_surface_create_from_png(handleStartPath); @@ -1121,7 +1121,7 @@ renderOverlay(LOKDocView* pDocView, cairo_t* pCairo) if (!isEmptyRectangle(priv->m_aTextSelectionEnd)) { // Have a start position: we need an end handle. - gchar* handleEndPath = g_strconcat (priv->m_aLOPath, "/../..", CURSOR_HANDLE_DIR, "handle_end.png", NULL); + gchar* handleEndPath = g_strconcat (priv->m_aLOPath, "/../..", CURSOR_HANDLE_DIR, "handle_image_end.png", NULL); if (!priv->m_pHandleEnd) { priv->m_pHandleEnd = cairo_image_surface_create_from_png(handleEndPath); |