Summary: | 'To Account' of an existing money transfer is displayed incorrectly in edit area | ||
---|---|---|---|
Product: | [Applications] skrooge | Reporter: | Johannes Goller <jogojapan> |
Component: | general | Assignee: | Stephane MANKOWSKI <stephane> |
Status: | RESOLVED FIXED | ||
Severity: | normal | CC: | stephane |
Priority: | NOR | ||
Version: | unspecified | ||
Target Milestone: | --- | ||
Platform: | Fedora RPMs | ||
OS: | Linux | ||
Latest Commit: | http://commits.kde.org/skrooge/cddee438fb7a8bf5fa4887292620535d193394f2 | Version Fixed In: | |
Sentry Crash Report: | |||
Attachments: |
It works on this case
Screenshot of the bug, using previously attached test case |
Description
Johannes Goller
2012-06-04 01:53:06 UTC
Git commit cddee438fb7a8bf5fa4887292620535d193394f2 by Stephane Mankowski. Committed on 04/06/2012 at 22:24. Pushed by smankowski into branch 'Feature'. M +1 -0 CHANGELOG M +3 -1 plugins/skrooge/skrooge_operation/skgoperationpluginwidget.cpp http://commits.kde.org/skrooge/cddee438fb7a8bf5fa4887292620535d193394f2 I built the latest version from the Feature branch (and confirmed that 'skrooge -v' on the command line returns 1.4.0BETA), but the bug is still there. Are you sure the fix is correct? Created attachment 71600 [details] It works on this case Hi, It works for me on this test case. Could you check in sources if you have the correction? https://projects.kde.org/projects/extragear/office/skrooge/repository/revisions/cddee438fb7a8bf5fa4887292620535d193394f2/diff/plugins/skrooge/skrooge_operation/skgoperationpluginwidget.cpp Thanks for checking. Here is what I did: Confirmed branch: 09:59 [jogojapan@diogenes skrooge]$ git branch * Feature master Confirmed bug fix included in code: 10:00 [jogojapan@diogenes skrooge]$ git log | head commit cddee438fb7a8bf5fa4887292620535d193394f2 Author: Stephane Mankowski <stephane@mankowski.fr> Date: Mon Jun 4 22:24:20 2012 +0200 BUG: 301137: 'To Account' of an existing money transfer is displayed incorrectly in edit area commit 9a55fa2b7cbe27147392d6ed6e23af0951b9cc5c Author: Stephane Mankowski <stephane@mankowski.fr> Date: Sat Jun 2 22:41:27 2012 +0200 To build it I did this: mkdir build cd build cmake .. -DCMAKE_INSTALL_PREFIX=`kde4-config --prefix` -DCMAKE_BUILD_TYPE=release make Note that I did NOT install it. Instead I ran it from within build/bin: cd bin LD_LIBRARY_PATH=../lib/ ./skrooge & (I tried both with and without changing LD_LIBRARY_PATH -- it did not seem to make a difference.) I have attached a screenshot of the view, using the test case you attached (301137.skg). I opened it, went to the Operations view, and clicked on the second line. That is supposed to be a transfer of $10 from B to C, but in the edit area below it gives A as To-Account. Created attachment 71611 [details]
Screenshot of the bug, using previously attached test case
Hi, You said "Note that I did NOT install it. Instead I ran it from within build/bin". The correction has been done in a plugin. Plugins can not be loaded by skrooge if not installed. So, in your case, the previous version of the plugin is loaded, without the correction. You must install you last build of Skrooge to be able to test the correction. Ahh. I see. Sorry for the confusion. I installed it locally now and added the install directory to the KDEDIRS environment variable before running Skrooge. That works, and I can confirm the bug is fixed. Thank you very much. |