From b44045fc66c376aca356bb3b84649c2af4a11fa8 Mon Sep 17 00:00:00 2001 From: Sven Strickroth Date: Sat, 3 Dec 2011 18:26:54 +0100 Subject: [PATCH] for some reason the default parameter value does not work Signed-off-by: Sven Strickroth --- src/TortoiseProc/Commands/StashCommand.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/TortoiseProc/Commands/StashCommand.cpp b/src/TortoiseProc/Commands/StashCommand.cpp index 25f4f00d7..55e4a473d 100644 --- a/src/TortoiseProc/Commands/StashCommand.cpp +++ b/src/TortoiseProc/Commands/StashCommand.cpp @@ -36,7 +36,7 @@ bool StashSaveCommand::Execute() bool StashApplyCommand::Execute() { - if(CAppUtils::StashApply(_T(""))) + if(CAppUtils::StashApply(_T("")), true) return false; return true; @@ -44,7 +44,7 @@ bool StashApplyCommand::Execute() bool StashPopCommand::Execute() { - if(CAppUtils::StashPop()) + if(CAppUtils::StashPop(true)) return false; return true; -- 2.11.4.GIT