Changeset 5cbcd091ed in tspsg for src


Ignore:
Timestamp:
Mar 13, 2011, 9:23:53 PM (13 years ago)
Author:
Oleksii Serdiuk
Branches:
0.1.4.170-beta2-bb10, appveyor, imgbot, master, readme
Children:
5631fb4d50
Parents:
8dcf4701e6
git-author:
Oleksii Serdiuk <contacts@…> (03/13/11 21:23:53)
git-committer:
Oleksii Serdiuk <contacts@…> (06/29/12 19:45:58)
Message:

Fixes and updates to Symbian SIS package generation rules and some small Symbian-related code fixes.

Location:
src
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • src/main.cpp

    r8dcf4701e6 r5cbcd091ed  
    4141int main(int argc, char *argv[])
    4242{
     43#ifdef Q_WS_S60
     44    // No enough memory for solution graph generation with tasks
     45    // of 20 and more cities if we use non-raster graphics system.
     46    QApplication::setGraphicsSystem("raster");
     47#endif
    4348QApplication app(argc, argv);
    4449    app.setOverrideCursor(QCursor(Qt::WaitCursor));
  • src/mainwindow.cpp

    r8dcf4701e6 r5cbcd091ed  
    617617#endif // HANDHELD
    618618
     619#ifndef HANDHELD
    619620    dlg->resize(450, 350);
     621#endif
    620622    QApplication::restoreOverrideCursor();
    621623
     
    11361138        }
    11371139        if (step->price != INFINITY) {
    1138             pic.drawText(QRectF(x - r, y - r, r * 2, r * 2), Qt::AlignCenter, isInteger(step->price) ?  QString("\n%1").arg(step->price) : QString("\n%1").arg(step->price, 0, 'f', settings->value("Task/FractionalAccuracy", DEF_FRACTIONAL_ACCURACY).toInt()));
     1140            pic.drawText(QRectF(x - r, y - r, r * 2, r * 2), Qt::AlignCenter, isInteger(step->price) ? QString("\n%1").arg(step->price) : QString("\n%1").arg(step->price, 0, 'f', settings->value("Task/FractionalAccuracy", DEF_FRACTIONAL_ACCURACY).toInt()));
    11391141        } else {
    11401142            pic.drawText(QRectF(x - r, y - r, r * 2, r * 2), Qt::AlignCenter, "\n"INFSTR);
     
    15791581    //! \hack HACK: A little hack for toolbar icons to have a sane size.
    15801582#if defined(HANDHELD) && !defined(Q_WS_MAEMO_5)
     1583#ifdef Q_WS_S60
     1584    toolBarMain->setIconSize(QSize(logicalDpiX() / 5, logicalDpiY() / 5));
     1585#else
    15811586    toolBarMain->setIconSize(QSize(logicalDpiX() / 4, logicalDpiY() / 4));
    1582 #endif // HANDHELD
     1587#endif // Q_WS_S60
     1588#endif // HANDHELD && !Q_WS_MAEMO_5
    15831589QToolButton *tb = static_cast<QToolButton *>(toolBarMain->widgetForAction(actionFileSave));
    1584     if (tb != NULL)      {
     1590    if (tb != NULL) {
    15851591        tb->setMenu(menuFileSaveAs);
    15861592        tb->setPopupMode(QToolButton::MenuButtonPopup);
  • src/tspsolver.h

    r8dcf4701e6 r5cbcd091ed  
    3636 * \brief This value means infinity :-)
    3737 *
    38  *  Some libraries already have \c INFINITY defined.
    39  *  We need to redefine it for the \c INFINITY to always have the same value.
     38 *  Define \c INFINITY if it's not already defined.
    4039 */
    41 #ifdef INFINITY
    42 #   undef INFINITY
     40#ifndef INFINITY
     41#   define INFINITY std::numeric_limits<double>::infinity()
    4342#endif
    44 #define INFINITY std::numeric_limits<double>::infinity()
    4543
    4644/*!
Note: See TracChangeset for help on using the changeset viewer.