You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@openoffice.apache.org by bu...@apache.org on 2012/08/15 10:37:44 UTC

[Bug 120570] Save keyboard configuration dialog displays "Load Keyboard Configuration" title

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

Ariel Constenla-Haile <ar...@apache.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |ACCEPTED
                 CC|                            |arielch@apache.org,
                   |                            |ooo-issues@incubator.apache
                   |                            |.org
           Assignee|ooo-issues@incubator.apache |arielch@apache.org
                   |.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 <ar...@apache.org> ---
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.