summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2016-02-29 14:58:39 +0000
committerCaolán McNamara <caolanm@redhat.com>2016-02-29 14:59:30 +0000
commit8980196fb65a7cb3d0f1f635bfc7645eb3982b81 (patch)
tree36987cc8d40645b5917e73e8a0af8a8c494dda6d
parente82d011ede2b7cb9bb53d463c3f0f397a0dd57fd (diff)
libreoffice-main -> libreoffice-startcenter
to sync these names with the the .desktop names Change-Id: I1c4d8943e61b5ae537b865d5a9c3065894f200d7
-rw-r--r--sfx2/source/appl/shutdowniconunx.cxx4
-rw-r--r--vcl/unx/gtk/gtksalframe.cxx2
-rw-r--r--vcl/unx/gtk3/gtk3gtkframe.cxx2
3 files changed, 4 insertions, 4 deletions
diff --git a/sfx2/source/appl/shutdowniconunx.cxx b/sfx2/source/appl/shutdowniconunx.cxx
index f8c84d4629cf..998b585c831c 100644
--- a/sfx2/source/appl/shutdowniconunx.cxx
+++ b/sfx2/source/appl/shutdowniconunx.cxx
@@ -141,7 +141,7 @@ static void add_item( GtkMenuShell *pMenuShell, const char *pAsciiURL,
else if (nResId == SV_ICON_ID_FORMULA)
appicon = g_strdup ("libreoffice-math");
else
- appicon = g_strdup ("libreoffice-main");
+ appicon = g_strdup ("libreoffice-startcenter");
GtkWidget *pImage = gtk_image_new_from_icon_name (appicon, GTK_ICON_SIZE_MENU);
GtkWidget *pMenuItem = gtk_image_menu_item_new_with_label( aLabel.getStr() );
@@ -340,7 +340,7 @@ void plugin_init_sys_tray()
pVCLResMgr = ResMgr::CreateResMgr("vcl");
- pTrayIcon = gtk_status_icon_new_from_icon_name ("libreoffice-main");
+ pTrayIcon = gtk_status_icon_new_from_icon_name ("libreoffice-startcenter");
g_object_set (pTrayIcon, "title", aLabel.getStr(),
"tooltip_text", aLabel.getStr(), nullptr);
diff --git a/vcl/unx/gtk/gtksalframe.cxx b/vcl/unx/gtk/gtksalframe.cxx
index 3e9d51a7bbc2..865469558ef5 100644
--- a/vcl/unx/gtk/gtksalframe.cxx
+++ b/vcl/unx/gtk/gtksalframe.cxx
@@ -1472,7 +1472,7 @@ void GtkSalFrame::SetIcon( sal_uInt16 nIcon )
else if (nIcon == SV_ICON_ID_FORMULA)
appicon = g_strdup ("libreoffice-math");
else
- appicon = g_strdup ("libreoffice-main");
+ appicon = g_strdup ("libreoffice-startcenter");
gtk_window_set_icon_name (GTK_WINDOW (m_pWindow), appicon);
}
diff --git a/vcl/unx/gtk3/gtk3gtkframe.cxx b/vcl/unx/gtk3/gtk3gtkframe.cxx
index d340c504fa3f..99d3676ff0a6 100644
--- a/vcl/unx/gtk3/gtk3gtkframe.cxx
+++ b/vcl/unx/gtk3/gtk3gtkframe.cxx
@@ -1376,7 +1376,7 @@ void GtkSalFrame::SetIcon( sal_uInt16 nIcon )
else if (nIcon == SV_ICON_ID_FORMULA)
appicon = g_strdup ("libreoffice-math");
else
- appicon = g_strdup ("libreoffice-main");
+ appicon = g_strdup ("libreoffice-startcenter");
gtk_window_set_icon_name (GTK_WINDOW (m_pWindow), appicon);
g_free (appicon);