Your ROOT_URL in app.ini is https://scm.trinitydesktop.org/gitea/ but you are visiting https://scm.trinitydesktop.net/gitea/TDE/tdevelop/src/commit/fd1d1e1064eb09ddbbd67d3597c39856f5c0bc76/embedded/visualboyadvance/visualboyadvance_part.h You should set ROOT_URL correctly, otherwise the web may not work correctly.
tdevelop/embedded/visualboyadvance/visualboyadvance_part.h

31 lines
586 B

/*
* Copyright (C) 2001 Sandy Meier <smeier@tdevelop.org>
*/
#ifndef __KDEVPART_VISUALBOYADVANCE_H__
#define __KDEVPART_VISUALBOYADVANCE_H__
#include <tqguardedptr.h>
#include <kdevplugin.h>
#include <kdialogbase.h>
namespace VisualBoyAdvance {
class VisualBoyAdvancePart : public KDevPlugin
{
Q_OBJECT
public:
VisualBoyAdvancePart(TQObject *parent, const char *name, const TQStringList &);
~VisualBoyAdvancePart();
private slots:
void slotExecute();
void projectConfigWidget(KDialogBase *dlg);
};
}
#endif