diff options
| author | Vincent Richard <[email protected]> | 2004-10-21 15:05:47 +0000 |
|---|---|---|
| committer | Vincent Richard <[email protected]> | 2004-10-21 15:05:47 +0000 |
| commit | 2949fb51f13e1236d5c161f02e1c2c8541100e9f (patch) | |
| tree | 991edcf50483116ce83977a4d9e652de8c5328dc /src/messaging/message.cpp | |
| parent | header class unit tests added (diff) | |
| download | vmime-2949fb51f13e1236d5c161f02e1c2c8541100e9f.tar.gz vmime-2949fb51f13e1236d5c161f02e1c2c8541100e9f.zip | |
Refactoring (see ChangeLog).
Diffstat (limited to 'src/messaging/message.cpp')
| -rw-r--r-- | src/messaging/message.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/messaging/message.cpp b/src/messaging/message.cpp index 0bb1aaca..871799c3 100644 --- a/src/messaging/message.cpp +++ b/src/messaging/message.cpp @@ -26,19 +26,19 @@ namespace messaging { const part& part::operator[](const int x) const { - return (structure()[x]); + return (getStructure()[x]); } part& part::operator[](const int x) { - return (structure()[x]); + return (getStructure()[x]); } -const int part::count() const +const int part::getCount() const { - return (structure().count()); + return (getStructure().getCount()); } |
