Your ROOT_URL in app.ini is https://scm.trinitydesktop.org/gitea/ but you are visiting https://scm.trinitydesktop.net/gitea/TDE/tqt3/blame/commit/1ba13366a7a377d50b9e8df9044ce11d8209f98c/examples/network/mail/composer.h You should set ROOT_URL correctly, otherwise the web may not work correctly.
tqt3/examples/network/mail/composer.h

42 lines
807 B

/****************************************************************************
**
** Copyright (C) 1992-2008 Trolltech ASA. All rights reserved.
**
** This file is part of an example program for TQt. This example
** program may be used, distributed and modified without limitation.
**
*****************************************************************************/
#ifndef COMPOSER_H
#define COMPOSER_H
#include <ntqwidget.h>
class TQLineEdit;
class TQMultiLineEdit;
class TQLabel;
class TQPushButton;
class Composer : public TQWidget
{
TQ_OBJECT
public:
Composer( TQWidget *parent = 0 );
private slots:
void sendMessage();
void enableSend();
private:
TQLineEdit *from, *to, *subject;
TQMultiLineEdit *message;
TQLabel * sendStatus;
TQPushButton * send;
};
#endif