/*
   *
   * $Id: ToolWin.c,v 1.3 1998/06/03 14:01:51 Giambattista_Bloisi Exp $
   *
 */

#define TOOLWIN_C

#include "common/extern.h"
#include "common/Grab_mcc.h"


/// "Dispatcher"
SAVEDS(ULONG)
ToolWin_Dispatcher (REG (a0,
                 struct IClass *cl), REG (a2, Object * obj), REG (a1, Msg msg))
{
  switch (msg->MethodID)
    {
    case OM_NEW:
    case OM_SET:
    case MUIM_UrlEditWin_Reset:
    case MUIM_UrlEditWin_Use:
      return (DoSuperMethodA (cl, obj, msg));
    }

  return (DoSuperMethodA (cl, obj, msg));
}
///

