comparison src/nsfns.m @ 101356:a7544aafa1e1

* nsfns.m (ns-read-file-name): Fix typo in assignment statement.
author Adrian Robert <Adrian.B.Robert@gmail.com>
date Thu, 22 Jan 2009 13:31:54 +0000
parents eca9795f3903
children 64413c753b62
comparison
equal deleted inserted replaced
101355:1cda0fcef248 101356:a7544aafa1e1
1492 { 1492 {
1493 [panel setCanChooseDirectories: YES]; 1493 [panel setCanChooseDirectories: YES];
1494 ret = [panel runModalForDirectory: dirS file: initS types: nil]; 1494 ret = [panel runModalForDirectory: dirS file: initS types: nil];
1495 } 1495 }
1496 1496
1497 ret = (ret = NSOKButton) || panelOK; 1497 ret = (ret == NSOKButton) || panelOK;
1498 1498
1499 fname = [panel filename]; 1499 fname = [panel filename];
1500 1500
1501 [[FRAME_NS_VIEW (SELECTED_FRAME ()) window] makeKeyWindow]; 1501 [[FRAME_NS_VIEW (SELECTED_FRAME ()) window] makeKeyWindow];
1502 1502