~ubuntu-sdk-team/qtcreator-plugin-remotelinux/trunk

« back to all changes in this revision

Viewing changes to src/valgrind/callgrindtool.cpp

  • Committer: CI bot
  • Author(s): Benjamin Zeller
  • Date: 2014-06-16 10:28:43 UTC
  • mfrom: (4.2.4 remotelinux)
  • Revision ID: ps-jenkins@lists.canonical.com-20140616102843-8juvmjvzwlzsboyw
Migrating to Qt5.3 and QtC 3.1 

Show diffs side-by-side

added added

removed removed

Lines of Context:
678
678
    action->setDisabled(true);
679
679
    action->setIcon(QIcon(QLatin1String(Core::Constants::ICON_REDO)));
680
680
    //action->setText(tr("Dump"));
681
 
    action->setToolTip(tr("Request the dumping of profile information. This will update the callgrind visualization."));
 
681
    action->setToolTip(tr("Request the dumping of profile information. This will update the Callgrind visualization."));
682
682
    connect(action, SIGNAL(triggered()), this, SLOT(slotRequestDump()));
683
683
    layout->addWidget(createToolButton(action));
684
684
    m_dumpAction = action;
696
696
    // pause action
697
697
    action = new QAction(this);
698
698
    action->setCheckable(true);
699
 
    action->setIcon(QIcon(QLatin1String(":/qml/images/pause-small.png")));
 
699
    action->setIcon(QIcon(QLatin1String(Core::Constants::ICON_PAUSE)));
700
700
    //action->setText(tr("Ignore"));
701
701
    action->setToolTip(tr("Pause event logging. No events are counted which will speed up program execution during profiling."));
702
702
    connect(action, SIGNAL(toggled(bool)), this, SIGNAL(pauseToggled(bool)));
938
938
{
939
939
    const QString filePath = QFileDialog::getOpenFileName(
940
940
                Core::ICore::mainWindow(),
941
 
                tr("Open Callgrind XML Log File"),
 
941
                tr("Open Callgrind Log File"),
942
942
                QString(),
943
 
                tr("XML Files (*.xml);;All Files (*)"));
 
943
                tr("Callgrind Output (callgrind.out*);;All Files (*)"));
944
944
    if (filePath.isEmpty())
945
945
        return;
946
946