summaryrefslogtreecommitdiff
path: root/cui/source/options/personalization.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'cui/source/options/personalization.cxx')
-rw-r--r--cui/source/options/personalization.cxx9
1 files changed, 8 insertions, 1 deletions
diff --git a/cui/source/options/personalization.cxx b/cui/source/options/personalization.cxx
index 9cd0021c2a59..928e32c9e117 100644
--- a/cui/source/options/personalization.cxx
+++ b/cui/source/options/personalization.cxx
@@ -128,8 +128,15 @@ IMPL_LINK( SelectPersonaDialog, SelectPersona, PushButton*, pButton )
if( pButton == m_vResultList[index] )
{
if( !m_vPersonaSettings[index].isEmpty() )
+ {
m_aSelectedPersona = m_vPersonaSettings[index];
-
+ // get the persona name from the setting variable to show in the progress.
+ sal_Int32 nNameIndex = m_aSelectedPersona.indexOf( ';' );
+ OUString aName = m_aSelectedPersona.copy( 0, nNameIndex );
+ OUString aProgress( "Selected Persona: " );
+ aProgress += aName;
+ SetProgress( aProgress );
+ }
break;
}
}