ICU-535 Fixed some compiler warnings

X-SVN-Rev: 2542
This commit is contained in:
George Rhoten 2000-09-30 01:57:38 +00:00
parent ef1328e9b6
commit 5244d856d6

View file

@ -39,8 +39,8 @@ class ReplaceableGlue : public Replaceable {
public:
ReplaceableGlue(UReplaceable *rep,
UReplaceableCallbacks *func);
ReplaceableGlue(UReplaceable *replaceable,
UReplaceableCallbacks *funcCallback);
virtual ~ReplaceableGlue();
@ -58,10 +58,10 @@ public:
};
ReplaceableGlue::ReplaceableGlue(UReplaceable *rep,
UReplaceableCallbacks *func) {
this->rep = rep;
this->func = func;
ReplaceableGlue::ReplaceableGlue(UReplaceable *replaceable,
UReplaceableCallbacks *funcCallback) {
this->rep = replaceable;
this->func = funcCallback;
buf = 0;
bufLen = 0;
}