From 8d1d31619d0197689fe69332081b97ee92b64a77 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9gory=20Soutad=C3=A9?= Date: Fri, 10 Dec 2010 19:16:26 +0100 Subject: [PATCH 1/2] Bad version number --- src/controller/KissCount.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/controller/KissCount.h b/src/controller/KissCount.h index 8cb6f63..7eb3a0a 100644 --- a/src/controller/KissCount.h +++ b/src/controller/KissCount.h @@ -29,7 +29,7 @@ #include -#define APP_VERSION "v0.2_dev" +#define APP_VERSION "v0.1" class wxUI; class Database; From 3785a726133fbf1dadfb342790951db5211a9267 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9gory=20Soutad=C3=A9?= Date: Wed, 15 Dec 2010 19:30:31 +0100 Subject: [PATCH 2/2] Fix a bug in SearchPanel (bad category displayed) --- src/view/grid/GridAccount.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/view/grid/GridAccount.cpp b/src/view/grid/GridAccount.cpp index 19ad49a..95595f9 100644 --- a/src/view/grid/GridAccount.cpp +++ b/src/view/grid/GridAccount.cpp @@ -220,7 +220,7 @@ void GridAccount::LoadOperations(std::vector* operations, bool canAdd { if (it->parent.Length()) continue; - InsertOperation(user, *it, ++curLine, true, it->month, it->year); + InsertOperation(user, *it, ++curLine, it->fix_cost, it->month, it->year); } }