Hi,
I am using CRichEditView class in MFC library to display RTF. The problem is
that ole objects are not displayed in-line with their surround texts. Could
you please let me know how to solve the problem?
Thanks in advances
emp
Module: tools
Branch: master
Commit: e77c1a3bf96ccbd6eb4b793393660ce54d6709c9
URL: http://source.winehq.org/git/tools.git/?a=commit;h=e77c1a3bf96ccbd6eb4b7933…
Author: Francois Gouget <fgouget(a)free.fr>
Date: Fri Mar 14 17:26:28 2008 +0100
winetest: Only append '.dll' if there is not already another extension.
---
winetest/gather | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/winetest/gather b/winetest/gather
index f4098ea..bf84b24 100755
--- a/winetest/gather
+++ b/winetest/gather
@@ -281,9 +281,10 @@ sub singletest($$$) {
print OUT " <td class=\"note\">$fail</td>\n";
} elsif ($count eq "dll missing") {
my ($dll, $subtest) = split(/:/, $testname);
+ $dll.=".dll" if ($dll !~ /\./);
print OUT <<"EOF";
<td class="skip_pass"><a
- title="No tests run as $dll.dll is not present on this system"
+ title="No tests run as $dll is not present on this system"
>n/a</a></td>
EOF
} elsif ($count eq "winetest crash") {
Module: tools
Branch: master
Commit: 2293fa753876b9cb54442c84040b4dc2ebbae3bc
URL: http://source.winehq.org/git/tools.git/?a=commit;h=2293fa753876b9cb54442c84…
Author: Francois Gouget <fgouget(a)free.fr>
Date: Fri Mar 14 17:26:19 2008 +0100
A couple of spelling and wording tweaks.
---
download.inc.php | 2 +-
winetest/README | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/download.inc.php b/download.inc.php
index d0a8ef4..727a685 100644
--- a/download.inc.php
+++ b/download.inc.php
@@ -45,7 +45,7 @@ function is_downloadable($sUrl)
fputs($fp, $get);
while(!feof($fp))
{
- // get ONLY header informations
+ // get ONLY header information
$header .= fgets($fp, 128);
}
fclose($fp);
diff --git a/winetest/README b/winetest/README
index c5b39d8..2a0215d 100644
--- a/winetest/README
+++ b/winetest/README
@@ -13,7 +13,7 @@ the destination for that and presents the results in an ordered form.
Configuration file, sets the following variables:
$queuedir - queue incoming submissions here
-$datadir - processed data get served from here
+$datadir - processed data is served from here
$builds - list of allowed build tags
* winetest.cgi
@@ -41,7 +41,7 @@ head of the file.
* gather
This program is intended to run as a second stage. See the sample
-crontab file, races and concurrency problems must be dealed with on
+crontab file. Races and concurrency problems must be dealt with on
that higher level. The program looks for a file matching
$datadir/*/outdated, creates index.html in the same directory and
removes the outdated file. See also the head of the file.