Skip to content

Commit

Permalink
1. Уточнение 4280.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
alabuzhev committed Feb 28, 2015
1 parent 7249f47 commit a8ffd5d
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
6 changes: 5 additions & 1 deletion far/changelog
@@ -1,4 +1,8 @@
drkns 28.02.2015 23:56:47 +0200 - build 4280
drkns 01.03.2015 00:58:19 +0200 - build 4281

1. Уточнение 4280.1.

drkns 28.02.2015 23:56:47 +0200 - build 4280

1. FCTL_SETPANELDIRECTORY теперь возвращает 0 при неудаче и не порождает диалогов в процессе.

Expand Down
5 changes: 3 additions & 2 deletions far/dirmix.cpp
Expand Up @@ -177,8 +177,9 @@ int TestFolder(const string& Path)
*/
bool CheckShortcutFolder(string& pTestPath, bool TryClosest, bool Silent)
{
bool Result = false;
if (!api::fs::exists(pTestPath))
bool Result = api::fs::exists(pTestPath);

if (!Result)
{
SetLastError(ERROR_PATH_NOT_FOUND);
Global->CatchError();
Expand Down
2 changes: 1 addition & 1 deletion far/vbuild.m4
@@ -1 +1 @@
m4_define(BUILD,4280)m4_dnl
m4_define(BUILD,4281)m4_dnl

0 comments on commit a8ffd5d

Please sign in to comment.