Kaydet (Commit) c61b562d authored tarafından Stephan Bergmann's avatar Stephan Bergmann

nOK var wants to be of type bool

Change-Id: I9e4129270a3d0bb744d8fbaf1641fcbdf1e2b0a7
üst 41b52249
......@@ -799,14 +799,14 @@ bool SdNavigatorWin::Notify(NotifyEvent& rNEvt)
*/
void SdNavigatorWin::KeyInput( const KeyEvent& rKEvt )
{
long nOK = sal_False;
bool nOK = false;
if (rKEvt.GetKeyCode().GetCode() == KEY_ESCAPE)
{
if( SdPageObjsTLB::IsInDrag() )
{
// during drag'n'drop we just stop the drag but do not close the navigator
nOK = sal_True;
nOK = true;
}
else
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment