summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorDavid Tardon <dtardon@redhat.com>2019-12-21 12:46:07 +0100
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2019-12-22 14:48:16 +0100
commitc227e5402f4c7470bae34998f6e8ecd6752545cf (patch)
tree6496ce2b8a040a488ed0ceac9b4ea5e937b46908 /doc
parent81cbaa728f595aa25819206dca6f71338686ad9e (diff)
downloadcppunit-c227e5402f4c7470bae34998f6e8ecd6752545cf.tar.gz
remove traces of .ds[pw] files from docs
Change-Id: I6ebc31181ccfe379be96e979cda3717a991cf513 Reviewed-on: https://gerrit.libreoffice.org/85663 Reviewed-by: Markus Mohrhard <markus.mohrhard@googlemail.com> Tested-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
Diffstat (limited to 'doc')
-rw-r--r--doc/Money.dox2
-rw-r--r--doc/cookbook.dox2
-rw-r--r--doc/other_documentation.dox2
3 files changed, 3 insertions, 3 deletions
diff --git a/doc/Money.dox b/doc/Money.dox
index c1d8126..0bec54e 100644
--- a/doc/Money.dox
+++ b/doc/Money.dox
@@ -28,7 +28,7 @@ $CPPUNIT/:
~~~~~
First, you need to compile %CppUnit libraries:
-- Open the `$CPPUNIT/src/CppUnitLibraries.dsw` workspace in VC++.
+- Open the `$CPPUNIT/src/CppUnitLibrariesXXXX.sln` workspace in VC++.
- In the 'Build' menu, select 'Batch Build...'
- In the batch build dialog, select all projects and press the build button.
- The resulting libraries can be found in the `$CPPUNIT/lib/` directory.
diff --git a/doc/cookbook.dox b/doc/cookbook.dox
index a46e59b..e8b689c 100644
--- a/doc/cookbook.dox
+++ b/doc/cookbook.dox
@@ -513,7 +513,7 @@ Now, you need to run your application after compilation.
With Visual C++, this is done in <em>Project Settings/Post-Build step</em>,
by adding the following command: <tt>"$(TargetPath)"</tt>. It is expanded to
the application executable path. Look up the project
-<tt>examples/cppunittest/CppUnitTestMain.dsp</tt> which
+<tt>examples/cppunittest/CppUnitTestMain.vcproj</tt> which
use that technic.
diff --git a/doc/other_documentation.dox b/doc/other_documentation.dox
index b7a1153..c935a7a 100644
--- a/doc/other_documentation.dox
+++ b/doc/other_documentation.dox
@@ -130,7 +130,7 @@ CPPUNIT_PLUGIN_IMPLEMENT();\endverbatim
* - Add your tests
* - You're done !
*
- * See examples/simple/simple_plugin.dsp for an example.
+ * See examples/simple/simple_plugin.vcproj for an example.
*
* Notes to VC++ users:
* - you can run a post-build check on the plug-in. Add the following line to your