Module: wine
Branch: refs/heads/master
Commit: b4fe7ea7c63349a525d5caf48e9453d24ae79114
URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=b4fe7ea7c63349a525d5caf…
Author: Robert Shearman <rob(a)codeweavers.com>
Date: Wed Jan 18 11:29:20 2006 +0100
ole: Update the COM todo list.
---
dlls/ole32/compobj.c | 1 -
1 files changed, 0 insertions(+), 1 deletions(-)
diff --git a/dlls/ole32/compobj.c b/dlls/ole32/compobj.c
index a06879e..80ecd11 100644
--- a/dlls/ole32/compobj.c
+++ b/dlls/ole32/compobj.c
@@ -33,7 +33,6 @@
* - Implement the OXID resolver so we don't need magic endpoint names for
* clients and servers to meet up
*
- * - Pump the message loop during RPC calls.
* - Call IMessageFilter functions.
*
* - Make all ole interface marshaling use NDR to be wire compatible with
Module: wine
Branch: refs/heads/master
Commit: 89846948e301fdf1dcf5f29ae9b7fc9ee5de5fed
URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=89846948e301fdf1dcf5f29…
Author: Robert Shearman <rob(a)codeweavers.com>
Date: Wed Jan 18 11:29:01 2006 +0100
oleaut: Reduce an ERR down to a WARN since a NULL interface pointer
doesn't signify an error; it is just unusual.
---
dlls/oleaut32/tmarshal.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/oleaut32/tmarshal.c b/dlls/oleaut32/tmarshal.c
index 273a598..e4fafa2 100644
--- a/dlls/oleaut32/tmarshal.c
+++ b/dlls/oleaut32/tmarshal.c
@@ -167,7 +167,7 @@ _marshal_interface(marshal_state *buf, R
* can happen. S_OK to make sure we continue
* serializing.
*/
- ERR("pUnk is NULL?\n");
+ WARN("pUnk is NULL\n");
xsize = 0;
return xbuf_add(buf,(LPBYTE)&xsize,sizeof(xsize));
}
ChangeSet ID: 22368
CVSROOT: /opt/cvs-commit
Module name: appdb
Changes by: wineowner(a)winehq.org 2006/01/17 22:32:28
Modified files:
include : application.php version.php
Log message:
Tony Lambregts <tony.lambregts(a)gmail.com>
Make back link in rejection emails point to appsubmit.php
Patch: http://cvs.winehq.org/patch.py?id=22368
Old revision New revision Changes Path
1.39 1.40 +1 -1 appdb/include/application.php
1.44 1.45 +1 -1 appdb/include/version.php
Index: appdb/include/application.php
diff -u -p appdb/include/application.php:1.39 appdb/include/application.php:1.40
--- appdb/include/application.php:1.39 18 Jan 2006 4:32:28 -0000
+++ appdb/include/application.php 18 Jan 2006 4:32:28 -0000
@@ -393,7 +393,7 @@ class Application {
break;
case "reject":
$sSubject = $this->sName." has been rejected by ".$_SESSION['current']->sRealname;
- $sMsg .= APPDB_ROOT."admin/resubmitRejectedApps.php?sub=view&appId=".$this->iAppId."\n";
+ $sMsg .= APPDB_ROOT."appsubmit.php?apptype=application&sub=view&appId=".$this->iAppId."\n";
/* if replyText is set we should report the reason the application was rejected */
if($_REQUEST['replyText'])
Index: appdb/include/version.php
diff -u -p appdb/include/version.php:1.44 appdb/include/version.php:1.45
--- appdb/include/version.php:1.44 18 Jan 2006 4:32:28 -0000
+++ appdb/include/version.php 18 Jan 2006 4:32:28 -0000
@@ -503,7 +503,7 @@ class Version {
break;
case "reject":
$sSubject = "Version '".$this->sName."' of '".$oApp->sName."' has been rejected by ".$_SESSION['current']->sRealname;
- $sMsg .= APPDB_ROOT."admin/resubmitRejectedApps.php?sub=view&versionId=".$this->iVersionId."\n";
+ $sMsg .= APPDB_ROOT."appsubmit.php?apptype=application&sub=view&versionId=".$this->iVersionId."\n";
/* if replyText is set we should report the reason the application was rejected */
if($_REQUEST['replyText'])