Added some missing marshallers.
Use Long instead of long. I had them both (it may be useful so that we know if we're streaming an object or just 8 bytes of value) but Windows couldn't fucking tell them apart (case insensitivity) so I nixed one. Reference some more marshallers in the client so that the classes will be compiled in.. gawd. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@3977 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
@@ -36,6 +36,7 @@ import com.threerings.presents.dobj.DObject;
|
||||
import com.threerings.presents.dobj.MessageEvent;
|
||||
import com.threerings.presents.dobj.MessageListener;
|
||||
|
||||
import com.threerings.util.Long;
|
||||
import com.threerings.util.MessageBundle;
|
||||
import com.threerings.util.MessageManager;
|
||||
import com.threerings.util.Name;
|
||||
@@ -441,7 +442,7 @@ public class ChatDirector extends BasicDirector
|
||||
}
|
||||
};
|
||||
var success :Function = function (
|
||||
idleTime :long, awayMessage :String) :void
|
||||
idleTime :Long, awayMessage :String) :void
|
||||
{
|
||||
var feedback :String = xlate(_bundle, MessageBundle.tcompose(
|
||||
"m.told_format", target, message));
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
package com.threerings.crowd.chat.client {
|
||||
|
||||
import com.threerings.util.long;
|
||||
import com.threerings.util.Long;
|
||||
|
||||
import com.threerings.presents.client.InvocationAdapter;
|
||||
|
||||
@@ -14,7 +14,7 @@ public class TellAdapter extends InvocationAdapter
|
||||
}
|
||||
|
||||
// documentation inherited from interface TellListener
|
||||
public function tellSucceeded (idleTime :long, awayMsg :String) :void
|
||||
public function tellSucceeded (idleTime :Long, awayMsg :String) :void
|
||||
{
|
||||
_successFunc(idleTime, awayMsg);
|
||||
}
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
package com.threerings.crowd.chat.client {
|
||||
|
||||
import com.threerings.util.long;
|
||||
import com.threerings.util.Long;
|
||||
|
||||
import com.threerings.presents.client.InvocationListener
|
||||
|
||||
public interface TellListener extends InvocationListener
|
||||
{
|
||||
function tellSucceeded (idleTime :long, awayMessage :String) :void;
|
||||
function tellSucceeded (idleTime :Long, awayMessage :String) :void;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user