Hi Andre,

Now I'm fixing the issue 69922.

The changes I made can be seen below:
bool SlotManager::RenameSlideFromDrawViewShell( USHORT nPageId, const
String & rName )
{...
if( ePageKind == PK_STANDARD )
{
// also rename notes-page
SdPage* pNotesPage = pDocument->GetSdPage( nPageId, PK_NOTES );
if (pNotesPage != NULL)
pNotesPage->SetName (rName);
}
//added for issue 69922
if ( pPageToRename->GetPageKind() == PK_NOTES )
{
SdPage* pStandardPage = pDocument->GetSdPage( nPageId, PK_STANDARD );
if ( pStandardPage != NULL )
pStandardPage->SetName( rName );
}
...
}
And it's directory: sd\source\ui\slidesorter\controller\slsslotmanager.cxx.

When the kind of the actual page is PK_NOTES, its name is modified. But
the standard page which is related to the note page has not been
renamed. That's why the page's name within slidesorter would not change
accordingly.

At present the issue is fixed in my computer. But I'm not sure whether
the changes are proper. So are there any other problems? I'm looking
forward to your suggestion.

Best regards,
Weike

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to