Changeset 5922 for branches/newapi

Show
Ignore:
Timestamp:
12/03/07 00:37:43 (12 months ago)
Author:
erijo
Message:

Updated to match changed interfaace

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/newapi/simple/src/plugin.cpp

    r5788 r5922  
    4646} 
    4747 
    48 Licq::Plugin* licqCreatePlugin(Licq::Log& log, int argc, char** argv) 
     48Licq::Plugin* licqCreatePlugin(const Licq::Plugin::Setup& setup) 
    4949{ 
    50   return new SimplePlugin(log); 
     50  return new SimplePlugin(*setup.log); 
    5151} 
    5252