[Winpt-commits] r215 - in trunk: . Src

scm-commit@wald.intevation.org scm-commit at wald.intevation.org
Wed May 17 09:10:47 CEST 2006


Author: twoaday
Date: 2006-05-17 09:10:46 +0200 (Wed, 17 May 2006)
New Revision: 215

Modified:
   trunk/Src/ChangeLog
   trunk/Src/wptKeyEditDlgs.cpp
   trunk/TODO
   trunk/configure.ac
Log:


Modified: trunk/Src/ChangeLog
===================================================================
--- trunk/Src/ChangeLog	2006-05-14 18:40:36 UTC (rev 214)
+++ trunk/Src/ChangeLog	2006-05-17 07:10:46 UTC (rev 215)
@@ -1,3 +1,8 @@
+2006-05-15  Timo Schulz  <ts at g10code.de>
+
+	* wptKeyEditDlgs.cpp (userid_list_init): Forgot to
+	apply patch. Thanks to vedaal.
+	
 2006-05-14  Timo Schulz  <ts at g10code.de>
 
 	* wptKeyCache.cpp (gpg_keycache_update_attr): Parse

Modified: trunk/Src/wptKeyEditDlgs.cpp
===================================================================
--- trunk/Src/wptKeyEditDlgs.cpp	2006-05-14 18:40:36 UTC (rev 214)
+++ trunk/Src/wptKeyEditDlgs.cpp	2006-05-17 07:10:46 UTC (rev 215)
@@ -1099,14 +1099,14 @@
     for (i = 0; cols[i].fieldname != NULL; i++)
 	listview_add_column (lv, &cols[i]);
         
-    for( i = 0; i < nkeys; i++ ) {
-        listview_add_item( lv, "" );
-	listview_add_sub_item( lv, 0, 1, "" );
-	memset( &lvi, 0, sizeof lvi );
+    for (i = 0; i < nkeys; i++) {
+        listview_add_item (lv, "");
+	listview_add_sub_item (lv, 0, 1, "");
+	memset (&lvi, 0, sizeof (lvi));
 	lvi.mask = LVIF_PARAM;	
-	lvi.lParam = (LPARAM)k->ctx;
-	if( ListView_SetItem( lv->ctrl, &lvi ) == FALSE )
-	    return NULL;
+	lvi.lParam = (LPARAM)k->ext;
+	if( ListView_SetItem (lv->ctrl, &lvi) == FALSE)
+	    return NULL; 
     }
         
     listview_set_ext_style( lv );

Modified: trunk/TODO
===================================================================
--- trunk/TODO	2006-05-14 18:40:36 UTC (rev 214)
+++ trunk/TODO	2006-05-17 07:10:46 UTC (rev 215)
@@ -1,6 +1,7 @@
 (priority: + high, * normal, - low)
 
 version 0.12.x
+    * check double-click (explorer) code
     + check native language support with non-admin accounts.
     * there is a problem with the +E hotkey in EURO countries.
     * migrate keyserver code to use the HTTP class.

Modified: trunk/configure.ac
===================================================================
--- trunk/configure.ac	2006-05-14 18:40:36 UTC (rev 214)
+++ trunk/configure.ac	2006-05-17 07:10:46 UTC (rev 215)
@@ -15,7 +15,7 @@
 
 # Version number: Remember to change it immediately *after* a release.
 #                 Add a "-cvs" prefix for non-released code.
-AC_INIT(WinPT, 0.12.1, http://www.winpt.org)
+AC_INIT(WinPT, 0.12.2-cvs, http://www.winpt.org)
 NEED_GPG_VERSION=1.4.2
 NEED_GPGME_API=1
 NEED_GPGME_VERSION=1.1.1



More information about the Winpt-commits mailing list