summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2015-11-23 10:18:15 +0100
committerMiklos Vajna <vmiklos@collabora.co.uk>2015-11-23 13:47:31 +0100
commit7ce0889ec9a87198560fa39afbae282938e0a9d9 (patch)
treeee0e938a8cc5d0ff51067a5de3fe75b7c111a081
parent334082b332981559315b2297f9d4874e5e53f29b (diff)
android: remove duplicated bitmaps
Change-Id: I5e16aa9da0aabe4302ebdd30b080b6bad4767006
-rw-r--r--android/source/res/drawable/handle_end.pngbin1734 -> 0 bytes
-rw-r--r--android/source/res/drawable/handle_middle.pngbin1850 -> 0 bytes
-rw-r--r--android/source/res/drawable/handle_start.pngbin1676 -> 0 bytes
-rw-r--r--libreofficekit/source/gtk/lokdocview.cxx6
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
deleted file mode 100644
index 32b77dfa6e26..000000000000
--- a/android/source/res/drawable/handle_end.png
+++ /dev/null
Binary files differ
diff --git a/android/source/res/drawable/handle_middle.png b/android/source/res/drawable/handle_middle.png
deleted file mode 100644
index 751eb898b136..000000000000
--- a/android/source/res/drawable/handle_middle.png
+++ /dev/null
Binary files differ
diff --git a/android/source/res/drawable/handle_start.png b/android/source/res/drawable/handle_start.png
deleted file mode 100644
index cf12a0dcdcf3..000000000000
--- a/android/source/res/drawable/handle_start.png
+++ /dev/null
Binary files differ
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);