CIA.vc
mecir
Real-time open source activity stats
Stats » Authors » mecir
informationsyndicateUTC clock
00:10 on Jul 30, 2010
event counters
The last message was received 9.48 months ago at 13:12 on Oct 18, 2009
0 messages so far today, 0 messages yesterday
0 messages so far this week, 0 messages last week
0 messages so far this month, 0 messages last month
206 messages since the first one, 5.93 years ago, for an average of 1.5 weeks between messages
recent messages
dateReversed sort columnprojectcontentlink
13:12 on Oct 18, 2009KDE
Commit by mecir :: r1037143 kspread/trunk/koffice/kspread/StyleManager.cpp:
Do not crash if the default style is not called "Default".

BUG: 192893
BUG: 186204
#
13:02 on Oct 18, 2009KDE
Commit by mecir :: r1037137 kspread/trunk/koffice/kspread/Sheet.cpp:
Do not needlessly iterate over billions of empty cells when
right-clicking on a full-sheet selection.

BUG: 199409
#
12:48 on Oct 18, 2009KDE
Commit by mecir :: r1037130 kspread/trunk/koffice/kspread/ (DependencyManager.cpp Sheet.cpp):
Do not needlessly iterate over billions of empty cells when re-enabling
recalculation.

BUG: 187151
#
11:34 on Oct 18, 2009KDE
Commit by mecir :: r1037084 kspread/trunk/koffice/kspread/ (4 files in 2 dirs):

  • disable ODDLYIELD and ODDLPRICE, they are broken
  • fix PRICEMAT
  • fix YEARFRAC unittests, we conform to the spec now, not to OOo's implementation
  • fit IPMT unittest KSpread passes all unittests now.
#
21:03 on Oct 17, 2009KDE
Commit by mecir :: r1036819 kspread/trunk/koffice/kspread/ (6 files in 3 dirs):

  • fix range information for formulas
  • fix yearfrac for actual/actual
  • some test adjustments - information unittests pass now, and most financial ones pass as well; 4 financial tests fail, 3 of them due to accuracy reasons
#
14:31 on May 19, 2009KDE
Commit by mecir :: r970092 kspread/trunk/koffice/kspread/Cell.cpp:
Adjust removal of prefixes to use Qt-based code, not C-like pointers.
#
18:23 on Mar 22, 2009KDE
Commit by mecir :: r942869 kspread/trunk/koffice/kspread/ValueFormatter.cpp:
Keep using scientific format for numbers lower then 1e-10, but do not
use it if the number is exactly 0, as that's stupid.
#
21:30 on Feb 22, 2009KDE
Commit by mecir :: r930237 kspread/trunk/koffice/kspread/ui/ (4 files):
The external cell editor now automatically resizes itself based on the
contents that it holds. This only happens when it has focus, it is
1-line all the time otherwise. The docker also automatically shrinks
itself accordingly.

Now all that's left is to make the docker top-aligned by default, and
I may even be happy for a day or two.
#
21:28 on Feb 22, 2009KDE
Commit by mecir :: r930236 libs/trunk/koffice/libs/flake/KoCanvasController.cpp:
Don't refocus to canvas on non-scrollbar events. I need this in KSpread.
#
16:40 on Feb 21, 2009KDE
Commit by mecir :: r929556 kspread/trunk/koffice/kspread/ (6 files in 2 dirs):
Shape saving in KSpread now works.

... sort of. Some shapes do not save themselves correctly, and I do not
know why. The text shape saves well, as do the simple ones (apart from
having coordinates shifted, but that'll be an easy change). The picture
shape doesn't save the actual picture.

But at least the basics are all done.
#
16:59 on Feb 01, 2009KDE
Commit by mecir :: r919833 kspread/trunk/koffice/kspread/ (6 files in 2 dirs):
The cell tool's option docker now relayouts itself based on its size.
Also moved it from the UI file to the C++ code - change approved by
translators, no strings were changed.
The docker's still right-docked by default, will look at that too.
#
13:47 on Jan 18, 2009KDE
Commit by mecir :: r912940 kspread/trunk/koffice/kspread/SheetPrint.cpp:
SheetPrint: ensure that we have a KSpread::Doc instance before calling
setModified. Should fix some crashes when using KSpread as a flake shape.
Note that all these setModified calls shouldn't be there at all, as the
tool should be calling that, but for now, this will have to do.

BUG: 178173
#
11:50 on Jan 18, 2009KDE
Commit by mecir :: r912805 kspread/trunk/koffice/kspread/ (5 files in 3 dirs):
Merging and dissociating cells now properly refreshes the selection.
Makes the subsequent editing attempts work correctly.

BUG: 115949
#
20:41 on Dec 30, 2008KDE
Commit by mecir :: r903555 kspread/trunk/koffice/kspread/functions/financial.cpp:
SVN_SILENT s/powl/std::pow - fixes compilation on freebsd
#
21:08 on Nov 30, 2008KDE
Commit by mecir :: r890998 kspread/trunk/koffice/kspread/ (6 files in 2 dirs):
Finally fixed all the problems related to the range markup displayed
when editing cells in either editor.

BUG: 175373
#
21:02 on Nov 23, 2008KDE
Commit by mecir :: r888137 kspread/trunk/koffice/kspread/ (4 files in 2 dirs):
Improve the external editor somewhat. It's not perfect, but at least
it's now usable. Had to disable reference range highlighting when the
external editor is being used, because it is causing odd problems and I
don't know why (the code is -very- messy). Will investigate further.
#
18:08 on Nov 17, 2008KDE
Commit by mecir :: r885673 kspread/trunk/koffice/kspread/ValueCalc.cpp:
Reimplemented factorial and double-factorial using iterative approach,
as opposed to the former recursive one.
#
17:22 on Nov 17, 2008KDE
Commit by mecir :: r885664 kspread/trunk/koffice/kspread/ValueCalc.cpp:
Adjust bessel* functions to not accept out-of-range parameters.
Patch contributed by Andrew Dorrell.
#
16:20 on Nov 15, 2008KDE
Commit by mecir :: r884655 kspread/trunk/koffice/kspread/ui/ (CellToolBase.cpp CellToolBase_p.h):
Fixed the Find/Replace functionality, so that it actually works. Most of
the options were broken and some were crashing - everything should work
correctly now.

BUG: 172861
#
14:43 on Nov 15, 2008KDE
Commit by mecir :: r884606 kspread/trunk/koffice/kspread/ValueFormatter.cpp:
Do not display small values as 0. Use scientific format if abs(value) <
1e-10.

BUG: 124527
#