[Pocketgames-devel] SF.net SVN: pocketgames: [220] libraries/cab/src/org/pocketgames/cab/ installd
Status: Beta
Brought to you by:
idominguez
|
From: <ido...@us...> - 2008-01-12 03:51:24
|
Revision: 220
http://pocketgames.svn.sourceforge.net/pocketgames/?rev=220&view=rev
Author: idominguez
Date: 2008-01-11 19:51:29 -0800 (Fri, 11 Jan 2008)
Log Message:
-----------
internal value in DWORD made private -> call to main constructor of DWORD changed
Modified Paths:
--------------
libraries/cab/src/org/pocketgames/cab/installdata/frontend/ParserREGKEY.java
Modified: libraries/cab/src/org/pocketgames/cab/installdata/frontend/ParserREGKEY.java
===================================================================
--- libraries/cab/src/org/pocketgames/cab/installdata/frontend/ParserREGKEY.java 2008-01-12 03:51:04 UTC (rev 219)
+++ libraries/cab/src/org/pocketgames/cab/installdata/frontend/ParserREGKEY.java 2008-01-12 03:51:29 UTC (rev 220)
@@ -34,8 +34,7 @@
if (bit0 && bit16)
{
int v = fromWord (nextWord32 (content, os+12+posNull));
- DWORD d = new DWORD ();
- d.v = v;
+ DWORD d = new DWORD (v);
val = d;
}
else if (!bit0 && !bit16)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|