From af49ccf508b894c798ae4daf99045a9c2a2523a4 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Tue, 4 Aug 2009 16:01:20 -0600 Subject: [PATCH] Bug Fix - wrong .taskrc file in message - When a .taskrc file is overridden (with rc:...) task still refers to the default file name in output. --- ChangeLog | 4 +++- src/Context.cpp | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 6abd94696..bd560836c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -5,7 +5,9 @@ + Fixed bug #231 that broke the build on OpenBSD 32-bit due to a time_t and int collision (thanks to Pietro Cerutti). + Fixed bug #241 that prevented bash's tab-completion of projects in Fedora - 11 and likely anything using bash-4 (John Florian) + 11 and likely anything using bash-4 (thanks to John Florian). + + Fixed bug that displays the wrong .taskrc file name on override (thanks to + Federico Hernandez). ------ old releases ------------------------------ diff --git a/src/Context.cpp b/src/Context.cpp index 179d218c7..3ba39f716 100644 --- a/src/Context.cpp +++ b/src/Context.cpp @@ -362,7 +362,9 @@ void Context::loadCorrectConfigFile () confirm ("A configuration file could not be found in " // TODO i18n + home + "\n\n" - + "Would you like a sample .taskrc created, so task can proceed?")) + + "Would you like a sample " + + rc + + " created, so task can proceed?")) { config.createDefaultRC (rc, data); }