Your ROOT_URL in app.ini is http://git.osmesh.ru/ but you are visiting http://91.221.70.94:3000/MOS/OpenBoard/blame/commit/5952e03b530d66cb93b70d252880b7aea1abaf50/src/gui/UBRubberBand.cpp You should set ROOT_URL correctly, otherwise the web may not work correctly.
новые иконки в OpenBoard
OpenBoard/src/gui/UBRubberBand.cpp

35 lines
555 B

/*
* UBRubberBand.cpp
*
* Created on: 20 mai 2009
* Author: Luc
*/
#include "UBRubberBand.h"
#include <QtGui>
#ifdef Q_WS_MAC
#include <QtGui/QMacStyle>
#endif
#include "core/memcheck.h"
UBRubberBand::UBRubberBand(Shape s, QWidget * p)
: QRubberBand(s, p)
{
QStyle* rubberBandStyle = QRubberBand::style();
#ifdef Q_WS_WIN
rubberBandStyle = new QWindowsXPStyle();
#elif defined(Q_WS_MAC)
rubberBandStyle = new QMacStyle();
#endif
QRubberBand::setStyle(rubberBandStyle);
}
UBRubberBand::~UBRubberBand()
{
// NOOP
}