summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRachit Gupta <rachitgupta1792@gmail.com>2014-06-18 12:09:56 +0530
committerRachit Gupta <rachitgupta1792@gmail.com>2014-06-18 15:07:52 +0530
commitb3ed6f893c1b2839d176977cd82ad88a9c9d9905 (patch)
treefeee4afacd60fdd62d651a97262364f86a13c3db
parentbf2ac8d1ca003f03149561bce30ef90c03e55220 (diff)
The selected theme is shown in the progress label.
The name of the theme is displayed in the progress label whenever the user clicks on one of the results. Change-Id: I4810c9e5faec1b1a5156716b9a62b1256951425c
-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 fa5b1a3a8430..e6307f49fc00 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;
}
}