-
Ahem....
You said:
How to change: (See graphics.cpp : Lines 809-To end and in UpdateCell function)
... unfortunately the version I have of graphics.cpp ends at line 766.
I seem to have old sources (and I grabbed latest published tarball).
You don't seem to use sourceforge's CVS repository.
Any suggestions?
TiA
Mauro.
2007-10-15 00:15:43 UTC in Sudoku Sensei
-
Hi,
I'm playing a little with SudokuSensei as a mean to learn something about Qt.
If You want I can keep You posted with my progress (including getting rid of the unneeded free/delete).
I am using a debian/stable machine and thus I actually have Qt-4.2.1.
Is that a problem?
I am implementing a small "hint" window that displays:
1) An icon about the health status of the...
2007-10-13 13:57:54 UTC in Sudoku Sensei
-
Hi,
Thanks for the nice program.
I played a little with it and I have found a few rough edges:
1) Sometimes it just crashes. It seems it's due to null pointer dereferencing.
2) I enabled printouts and I often see diagnostics about freeing memory that was not allocated.
3) In NewGame::NewGame() there seems to be a bit of confusion in the labels; I assume it should read something like:
2007-10-10 13:23:19 UTC in Sudoku Sensei
-
Thanks.
I will use the methods for the time being, in the future I will switch to string keys (which does make some sense, also in my case).
In the meantime I have another small question:
How do I output an hexadecimal number in FreeMarker?
Doing that from plain Java is a PITA enough (Integer.toHexString(num)), what about FreeMarker?
A search in the site reveals nothing (I just found...
2007-06-01 13:23:00 UTC in FreeMarker
-
Hi,
I seem really unable to fully understand how hashes work :-(
I have the following declarations:
...
private HashMap<Event, Snippet> handledEvents = null;
...
public HashMap<Event, Snippet> getHandledEvents() {
return handledEvents;
}
public Snippet getHandledEvents(Event event) { //added to bypass error
return handledEvents.get(event);
}
...
in my...
2007-05-31 07:11:21 UTC in FreeMarker