@ -108,7 +108,7 @@ const ClassInfo KSVG::Window::s_classInfo = { "Window", 0, &s_hashTable, 0 };
KSVG : : Window : : Window ( KSVG : : SVGDocumentImpl * p ) : ObjectImp ( ) , m_doc ( p )
{
winq = new Window T QObject( this ) ;
winq = new Window QObject( this ) ;
}
KSVG : : Window : : ~ Window ( )
@ -278,7 +278,7 @@ void KSVG::Window::clear(ExecState *exec)
{
kdDebug ( 26004 ) < < " KSVG::Window::clear " < < this < < endl ;
delete winq ;
winq = new Window T QObject( this ) ; ;
winq = new Window QObject( this ) ; ;
// Get rid of everything, those user vars could hold references to DOM nodes
deleteAllProperties ( exec ) ;
@ -488,18 +488,18 @@ void ScheduledAction::execute(Window *window)
}
}
////////////////////// Window T QObject ////////////////////////
////////////////////// Window QObject ////////////////////////
Window T QObject: : Window T QObject( Window * w ) : tqparent ( w )
Window QObject: : Window QObject( Window * w ) : tqparent ( w )
{
}
Window T QObject: : ~ Window T QObject( )
Window QObject: : ~ Window QObject( )
{
tqparentDestroyed ( ) ; // reuse same code
}
void Window T QObject: : tqparentDestroyed ( )
void Window QObject: : tqparentDestroyed ( )
{
killTimers ( ) ;
@ -513,7 +513,7 @@ void WindowTQObject::tqparentDestroyed()
scheduledActions . clear ( ) ;
}
int Window T QObject: : installTimeout ( const UString & handler , int t , bool singleShot )
int Window QObject: : installTimeout ( const UString & handler , int t , bool singleShot )
{
int id = startTimer ( t ) ;
ScheduledAction * action = new ScheduledAction ( handler . qstring ( ) , singleShot ) ;
@ -521,7 +521,7 @@ int WindowTQObject::installTimeout(const UString &handler, int t, bool singleSho
return id ;
}
int Window T QObject: : installTimeout ( const Value & func , List args , int t , bool singleShot )
int Window QObject: : installTimeout ( const Value & func , List args , int t , bool singleShot )
{
Object objFunc = Object : : dynamicCast ( func ) ;
int id = startTimer ( t ) ;
@ -529,7 +529,7 @@ int WindowTQObject::installTimeout(const Value &func, List args, int t, bool sin
return id ;
}
void Window T QObject: : clearTimeout ( int timerId , bool delAction )
void Window QObject: : clearTimeout ( int timerId , bool delAction )
{
killTimer ( timerId ) ;
@ -545,7 +545,7 @@ void WindowTQObject::clearTimeout(int timerId, bool delAction)
}
}
void Window T QObject: : timerEvent ( TQTimerEvent * e )
void Window QObject: : timerEvent ( TQTimerEvent * e )
{
TQMapIterator < int , ScheduledAction * > it = scheduledActions . tqfind ( e - > timerId ( ) ) ;
if ( it ! = scheduledActions . end ( ) )
@ -570,9 +570,9 @@ void WindowTQObject::timerEvent(TQTimerEvent *e)
delete action ;
}
else
kdWarning ( 6070 ) < < " Window T QObject::timerEvent this=" < < this < < " timer " < < e - > timerId ( ) < < " not found ( " < < scheduledActions . count ( ) < < " actions in map) " < < endl ;
kdWarning ( 6070 ) < < " Window QObject::timerEvent this=" < < this < < " timer " < < e - > timerId ( ) < < " not found ( " < < scheduledActions . count ( ) < < " actions in map) " < < endl ;
}
void Window T QObject: : timeoutClose ( )
void Window QObject: : timeoutClose ( )
{
}