|
|
#ifndef TESTKHTML_H #define TESTKHTML_H /** * @internal */ class Dummy : public QObject { Q_OBJECT public: Dummy( KHTMLPart *part ) : QObject( part ) { m_part = part; }; private slots: void slotOpenURL( const KURL &url, const KParts::URLArgs &args ) { m_part->browserExtension()->setURLArgs( args ); m_part->openURL( url ); } private: KHTMLPart *m_part; }; #endif
Generated by: dfaure on Tue Feb 27 12:47:29 2001, using kdoc 2.0a50. |