Changeset 2850 for source/ariba/utility


Ignore:
Timestamp:
Apr 16, 2009, 2:58:55 PM (15 years ago)
Author:
Christoph Mayer
Message:

-friend def für arm gefixt

Location:
source/ariba/utility/system
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • source/ariba/utility/system/SystemEvent.h

    r2848 r2850  
    5959        const void* data; //< data attached to the event
    6060
    61 public:
     61public:
     62        // TODO: these should be private, but the gcc 3.4 in scratchbox for cross-compiling
     63        // for Maemo (Nokia N810) gets confused when the friend class SystemQueue has a
     64        // private class that accesses these variables. Therefore they are public for now.
    6265        ptime scheduledTime; //< time the event was originally given to the queue
    6366        uint32_t delayTime; //< time the event is scheduled at, or 0 if it is to be fired immediately
  • source/ariba/utility/system/SystemQueue.cpp

    r2849 r2850  
    220220void SystemQueue::QueueThreadDirect::onNextQueueItem( const SystemEvent& event ){
    221221        // directly deliver the item to the
    222         event.listener->handleSystemEvent( event );
     222        event.getListener()->handleSystemEvent( event );
    223223}
    224224
Note: See TracChangeset for help on using the changeset viewer.