summaryrefslogtreecommitdiffabout
path: root/kabc/vcard/AgentValue.cpp
Side-by-side diff
Diffstat (limited to 'kabc/vcard/AgentValue.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--kabc/vcard/AgentValue.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/kabc/vcard/AgentValue.cpp b/kabc/vcard/AgentValue.cpp
index bccde80..14e73b1 100644
--- a/kabc/vcard/AgentValue.cpp
+++ b/kabc/vcard/AgentValue.cpp
@@ -21,12 +21,14 @@
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
#include <VCardAgentValue.h>
#include <VCardValue.h>
+//Added by qt3to4:
+#include <Q3CString>
using namespace VCARD;
AgentValue::AgentValue()
: Value()
{
@@ -34,13 +36,13 @@ AgentValue::AgentValue()
AgentValue::AgentValue(const AgentValue & x)
: Value(x)
{
}
-AgentValue::AgentValue(const QCString & s)
+AgentValue::AgentValue(const Q3CString & s)
: Value(s)
{
}
AgentValue &
AgentValue::operator = (AgentValue & x)
@@ -49,13 +51,13 @@ AgentValue::operator = (AgentValue & x)
Value::operator = (x);
return *this;
}
AgentValue &
-AgentValue::operator = (const QCString & s)
+AgentValue::operator = (const Q3CString & s)
{
Value::operator = (s);
return *this;
}
bool