summaryrefslogtreecommitdiff
path: root/src/VBox/Main/include/ParallelPortImpl.h
diff options
context:
space:
mode:
authorvboxsync <vboxsync@cfe28804-0f27-0410-a406-dd0f0b0b656f>2007-08-23 19:01:31 +0000
committervboxsync <vboxsync@cfe28804-0f27-0410-a406-dd0f0b0b656f>2007-08-23 19:01:31 +0000
commitd106b58dad15030cc518b5168e6db5f453e507a0 (patch)
tree2176da161e08ba550d346c0f66feba528d5df837 /src/VBox/Main/include/ParallelPortImpl.h
parent98fba4078d71a01884fe92d47f64b7f5d7e81955 (diff)
downloadVirtualBox-svn-d106b58dad15030cc518b5168e6db5f453e507a0.tar.gz
Main: Improved serial port API (mostly spelling);
FE/Qt: Improved serial port UI (spelling and duplicate handling). git-svn-id: https://www.virtualbox.org/svn/vbox/trunk@4324 cfe28804-0f27-0410-a406-dd0f0b0b656f
Diffstat (limited to 'src/VBox/Main/include/ParallelPortImpl.h')
-rw-r--r--src/VBox/Main/include/ParallelPortImpl.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/VBox/Main/include/ParallelPortImpl.h b/src/VBox/Main/include/ParallelPortImpl.h
index 0b90fdfbaab..a91be1f9a8b 100644
--- a/src/VBox/Main/include/ParallelPortImpl.h
+++ b/src/VBox/Main/include/ParallelPortImpl.h
@@ -47,14 +47,15 @@ public:
(mSlot == that.mSlot &&
mEnabled == that.mEnabled &&
mIRQ == that.mIRQ &&
- mIOBase == that.mIOBase);
+ mIOBase == that.mIOBase &&
+ mPath == that.mPath);
}
ULONG mSlot;
BOOL mEnabled;
ULONG mIRQ;
ULONG mIOBase;
- Bstr mDevicePath;
+ Bstr mPath;
};
VIRTUALBOXBASE_ADD_ERRORINFO_SUPPORT (ParallelPort)
@@ -89,8 +90,8 @@ public:
STDMETHOD(COMSETTER(IRQ)) (ULONG aIRQ);
STDMETHOD(COMGETTER(IOBase)) (ULONG *aIOBase);
STDMETHOD(COMSETTER(IOBase)) (ULONG aIOBase);
- STDMETHOD(COMGETTER(DevicePath)) (BSTR *aDevicePath);
- STDMETHOD(COMSETTER(DevicePath)) (INPTR BSTR aDevicePath);
+ STDMETHOD(COMGETTER(Path)) (BSTR *aPath);
+ STDMETHOD(COMSETTER(Path)) (INPTR BSTR aPath);
// public methods only for internal purposes
bool isModified() { AutoLock alock (this); return mData.isBackedUp(); }