summaryrefslogtreecommitdiff
path: root/hwpfilter/source/mzstring.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'hwpfilter/source/mzstring.cpp')
-rw-r--r--hwpfilter/source/mzstring.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/hwpfilter/source/mzstring.cpp b/hwpfilter/source/mzstring.cpp
index aadb688762cf..c8d7e977bdac 100644
--- a/hwpfilter/source/mzstring.cpp
+++ b/hwpfilter/source/mzstring.cpp
@@ -78,7 +78,7 @@ MzString::~MzString()
}
-void MzString::operator = (MzString &s)
+MzString &MzString::operator = (MzString &s)
{
int n = s.length();
if (allocate(n))
@@ -86,10 +86,11 @@ void MzString::operator = (MzString &s)
if (n > 0) memcpy(Data, s.Data, n);
Length = n;
}
+ return *this;
}
-void MzString::operator = (const char *s)
+MzString &MzString::operator = (const char *s)
{
if (s == NULL)
s = "";
@@ -99,6 +100,7 @@ void MzString::operator = (const char *s)
if (n > 0) memcpy(Data, s, n);
Length = n;
}
+ return *this;
}