Your ROOT_URL in app.ini is https://scm.trinitydesktop.org/gitea/ but you are visiting https://scm.trinitydesktop.net/gitea/TDE/tdenetwork/src/commit/cd9b9ed7fd0ac8a75106148254aa58e2e5c04863/kopete/protocols/yahoo/libkyahoo/tests/clientstream_test.h You should set ROOT_URL correctly, otherwise the web may not work correctly.
tdenetwork/kopete/protocols/yahoo/libkyahoo/tests/clientstream_test.h

51 lines
818 B

//
// C++ Implementation: clientstream_test
//
// Description:
//
//
// Author: Kopete Developers <kopete-devel@kde.org>, (C) 2004
// Licensed under the GNU General Public License
#ifndef clientstream_test_h
#define clientstream_test_h
#include <tqglobal.h>
#include <tqapplication.h>
#include <tqtimer.h>
#include "yahooclientstream.h"
#include "yahooconnector.h"
#include "coreprotocol.h"
#define TQT_FATAL_ASSERT 1
class ClientStreamTest : public TQApplication
{
Q_OBJECT
TQ_OBJECT
public:
ClientStreamTest(int argc, char ** argv);
~ClientStreamTest();
bool isConnected();
public slots:
void slotDoTest();
void slotConnected();
//void slotWarning(int warning);
//void slotsend(int layer);
private:
KNetworkConnector *myConnector;
ClientStream *myTestObject;
bool connected;
};
#endif