https://issues.apache.org/ooo/show_bug.cgi?id=120570

Ariel Constenla-Haile <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |ACCEPTED
                 CC|                            |[email protected],
                   |                            |[email protected]
                   |                            |.org
           Assignee|[email protected] |[email protected]
                   |.org                        |
            Summary|save keyboard configuration |Save keyboard configuration
                   |has 'load' dialogue         |dialog displays "Load
                   |                            |Keyboard Configuration"
                   |                            |title
     Ever confirmed|0                           |1

--- Comment #1 from Ariel Constenla-Haile <[email protected]> ---
The dialog itself is not wrong, it's only the title.

main/cui/source/customize/acccfg.cxx is using the wrong string:

IMPL_LINK( SfxAcceleratorConfigPage, Save, Button*, EMPTYARG )
{
    StartFileDialog( WB_SAVEAS | WB_STDMODAL | WB_3DLOOK, aLoadAccelConfigStr
);
    return 0;
}


It should be 

IMPL_LINK( SfxAcceleratorConfigPage, Save, Button*, EMPTYARG )
{
    StartFileDialog( WB_SAVEAS | WB_STDMODAL | WB_3DLOOK, aSaveAccelConfigStr
);
    return 0;
}

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are the assignee for the bug.

Reply via email to