diff options
author | Muhammet Kara <muhammet.kara@pardus.org.tr> | 2018-10-26 13:00:45 +0300 |
---|---|---|
committer | Muhammet Kara <muhammet.kara@pardus.org.tr> | 2018-10-26 13:47:28 +0200 |
commit | 39d8e5e574c7f445c4d34a7a72d6ac40e3364ddb (patch) | |
tree | 973fd49f52895a58dac8372d0a70e18a2bdddd41 /vcl/source | |
parent | 4054dff516367b332b7e3ce6fa91a452bf690571 (diff) |
Towards solving tdf#120747: Remember the preview file of persona
Change-Id: I9230421a98ea5d1ec61bf1500b24949635db68d3
Reviewed-on: https://gerrit.libreoffice.org/62387
Tested-by: Jenkins
Reviewed-by: Muhammet Kara <muhammet.kara@pardus.org.tr>
Diffstat (limited to 'vcl/source')
-rw-r--r-- | vcl/source/app/settings.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/source/app/settings.cxx b/vcl/source/app/settings.cxx index 454c88e23a16..267a58262229 100644 --- a/vcl/source/app/settings.cxx +++ b/vcl/source/app/settings.cxx @@ -2123,8 +2123,8 @@ static void setupPersonaHeaderFooter( WhichPersona eWhich, OUString& rHeaderFoot { sal_Int32 nIndex = 0; - // Skip the persona slug and name - aHeader = aPersonaSettings.getToken( 2, ';', nIndex ); + // Skip the persona slug, name, and preview + aHeader = aPersonaSettings.getToken( 3, ';', nIndex ); if ( nIndex > 0 ) aFooter = aPersonaSettings.getToken( 0, ';', nIndex ); |