|
|
#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: root@powerpc.ports.openbsd.org on Tue Apr 24 23:01:20 2001, using kdoc 2.0a53. |