Index: kdcoppropertyproxy.cpp =================================================================== RCS file: /home/kde/kdelibs/kdecore/kdcoppropertyproxy.cpp,v retrieving revision 1.3 diff -u -2 -d -p -b -r1.3 kdcoppropertyproxy.cpp --- kdcoppropertyproxy.cpp 2000/07/18 16:57:19 1.3 +++ kdcoppropertyproxy.cpp 2001/01/29 23:08:37 @@ -190,5 +190,5 @@ bool KDCOPPropertyProxy::processProperty #define DEMARSHAL( type, val ) \ - case QVariant::##type: \ + case QVariant::type: \ { \ val v; \ @@ -258,5 +258,5 @@ bool KDCOPPropertyProxy::processProperty #define MARSHAL( type ) \ - case QVariant::##type: \ + case QVariant::type: \ reply << prop.to##type(); \ break;