Your ROOT_URL in app.ini is https://scm.trinitydesktop.org/gitea/ but you are visiting https://scm.trinitydesktop.net/gitea/TDE/tqt3/src/commit/541b90072523725854cb5d61f1bdce50dbcc6b31/tools/designer/examples/book/book4/main.cpp You should set ROOT_URL correctly, otherwise the web may not work correctly.
tqt3/tools/designer/examples/book/book4/main.cpp

30 lines
698 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.
**
*****************************************************************************/
#include <ntqapplication.h>
#include <ntqsqldatabase.h>
#include "book.h"
#include "../connection.h"
int main( int argc, char *argv[] )
{
TQApplication app( argc, argv );
if ( ! createConnections() )
return 1;
BookForm bookForm;
app.setMainWidget( &bookForm );
bookForm.show();
return app.exec();
}