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/35f3f9ef33100c276b267e7e933709fdf737b2fe/languages/cpp/app_templates/kofficepart/kopart_view.h You should set ROOT_URL correctly, otherwise the web may not work correctly.
tdevelop/languages/cpp/app_templates/kofficepart/kopart_view.h

36 lines
650 B

/* This template is based off of the KOffice example written by Torben Weis <weis@kde.org
It was converted to a KDevelop template by Ian Reinhart Geiser <geiseri@yahoo.com>
*/
#ifndef %{APPNAME}_VIEW
#define %{APPNAME}_VIEW
#include <koView.h>
class KAction;
class TQPaintEvent;
class %{APPNAME}Part;
class %{APPNAME}View : public KoView
{
Q_OBJECT
TQ_OBJECT
public:
%{APPNAME}View( %{APPNAME}Part* part, TQWidget* parent = 0, const char* name = 0 );
protected slots:
void cut();
protected:
void paintEvent( TQPaintEvent* );
virtual void updateReadWrite( bool readwrite );
private:
//KAction* m_cut;
};
#endif