Skip to content

Commit

Permalink
Clang code model related cleaning up.
Browse files Browse the repository at this point in the history
  • Loading branch information
agarny committed Aug 7, 2018
2 parents 02f64f6 + dc92446 commit 93e3453
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/plugins/sample/SampleView/src/sampleviewwidget.cpp
Expand Up @@ -107,7 +107,7 @@ void SampleViewWidget::update(const QString &pFileName)
QString sha1Value = fileManagerInstance->sha1(pFileName);

mGui->sha1Value->setText(sha1Value.isEmpty()?"???":sha1Value);
mGui->sizeValue->setText(Core::sizeAsString(QFile(pFileName).size()));
mGui->sizeValue->setText(Core::sizeAsString(quint64(QFile(pFileName).size())));
}

//==============================================================================
Expand Down
4 changes: 2 additions & 2 deletions src/plugins/test/ZincWindow/src/zincwindowwindow.cpp
Expand Up @@ -49,8 +49,8 @@ namespace ZincWindow {
ZincWindowWindow::ZincWindowWindow(QWidget *pParent) :
Core::WindowWidget(pParent),
mGui(new Ui::ZincWindowWindow),
mZincContext(0),
mZincSceneViewerDescription(0),
mZincContext(nullptr),
mZincSceneViewerDescription(nullptr),
mAxesFontPointSize(0)
{
// Set up the GUI
Expand Down

0 comments on commit 93e3453

Please sign in to comment.