Skip to content

Commit 6980876

Browse files
author
mtx48109
committed
more corrections
1 parent 24e40a5 commit 6980876

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

docs/mfc/active-document-containers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ An active document container, such as Microsoft Office Binder or Internet Explor
6767
The document site is conceptually the container for one or more "view site" objects. Each view site object is associated with individual view objects of the document managed by the document site. If the container only supports a single view per document site, then it can implement the document site and the view site with a single concrete class.
6868

6969
## <a name="view_site_objects"></a> View Site Objects
70-
A container's view site object manages the display space for a particular view of a document. In addition to supporting the standard `IOleInPlaceSite` interface, a view site also generally implements **IContinueCallback** for programmatic printing control. (Note that the view object never queries for `IContinueCallback` so it can actually be implemented on any object the container desires.)
70+
A container's view site object manages the display space for a particular view of a document. In addition to supporting the standard `IOleInPlaceSite` interface, a view site also generally implements `IContinueCallback` for programmatic printing control. (Note that the view object never queries for `IContinueCallback` so it can actually be implemented on any object the container desires.)
7171

7272
A container that supports multiple views must be able to create multiple view site objects within the document site. This provides each view with separate activation and deactivation services as provided through `IOleInPlaceSite`.
7373

docs/mfc/active-documents-on-the-internet.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Active documents provide an extension to traditional embedded objects. The Activ
4141
|-------------------------|---------------------------------|
4242
|Uses compound files as its storage mechanism.|`IPersistStorage`.|
4343
|Supports the basic embedding features of Active documents, including Create From File.|`IPersistFile`, `IOleObject`, and `IDataObject`.|
44-
|Supports in-place activation.|`IOleInPlaceObject` and `IOleInPlaceActiveObject` (using the container's `IOleInPlaceSite` and **IOleInPlaceFrame** interfaces).|
44+
|Supports in-place activation.|`IOleInPlaceObject` and `IOleInPlaceActiveObject` (using the container's `IOleInPlaceSite` and `IOleInPlaceFrame` interfaces).|
4545
|Supports the Active document extensions that involve these new interfaces. Some interfaces are optional.|`IOleDocument`, `IOleDocumentView`, `IOleCommandTarget`, and `IPrint`.|
4646

4747
MFC provides support for extending existing embedded server support to Active documents.
@@ -54,7 +54,7 @@ Active documents provide an extension to traditional embedded objects. The Activ
5454

5555
|Class type|Formerly derived from|Change to derive from|
5656
|----------------|---------------------------|---------------------------|
57-
|In-Place Frame|`COleIPFrameWnd`|**COleDocIPFrameWnd**|
57+
|In-Place Frame|`COleIPFrameWnd`|`COleDocIPFrameWnd`|
5858
|Item|`COleServerItem`|`CDocObjectServerItem`|
5959

6060
You will also change how information is entered in the registry, and make several other changes. If your application currently has no COM components support, you can add server support by running the Application Wizard and integrating the COM component-specific code with your existing application.

docs/mfc/active-documents.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Active documents extend the compound document technology of OLE. These extension
1616

1717
This section describes the functional [requirements for active documents](#requirements_for_active_documents). The active document owns a set of data and has access to storage where the data can be saved and retrieved. It can create and manage one or more views on its data. In addition to supporting the usual embedding and in-place activation interfaces of OLE documents, the active document communicates its ability to create views through `IOleDocument`. Through this interface, the container can ask to create (and possibly enumerate) the views that the active document can display. Through this interface, the active document can also provide miscellaneous information about itself, such as whether it supports multiple views or complex rectangles.
1818

19-
The following is the `IOleDocument` interface. Note that the `IEnumOleDocumentViews` interface is a standard OLE enumerator for `IOleDocumentView \*` types.
19+
The following is the `IOleDocument` interface. Note that the `IEnumOleDocumentViews` interface is a standard OLE enumerator for `IOleDocumentView *` types.
2020

2121
```
2222
interface IOleDocument : IUnknown

0 commit comments

Comments
 (0)