Skip to content

Commit

Permalink
Fix compilation error on Debian and make package release possible.
Browse files Browse the repository at this point in the history
  • Loading branch information
maximaximal committed Jan 7, 2019
1 parent ff2ff12 commit 68a8e23
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.0.4)
project(RTest
VERSION 0.6.1)
VERSION 0.7.1)

set(BUILD_NUMBER "0" CACHE STRING "Build-Number")

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM dockcross/linux-x64

ENV DEFAULT_DOCKCROSS_IMAGE rtest-amd64

RUN apt-get install -yq libboost-serialization-dev qtdeclarative5-dev qt5-default libsqlite3-dev swig2.0
RUN apt-get update && apt-get install -yq libboost-serialization-dev libboost-log-dev libboost-regex-dev qtdeclarative5-dev qt5-default libsqlite3-dev swig2.0

# Install Standard Python Dev Stuff
RUN apt-get install -yq libpython3-dev python3-numpy python3 libpython3.4
Expand Down
2 changes: 1 addition & 1 deletion src/StdinReader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ StdinReader::activated(int)
QStringList lines = content.split("\n");

for(auto line : lines) {
if(line.length() > 0 && line.at(0) == "~") {
if(line.length() > 0 && line.at(0) == QChar('~')) {
line.remove(0, 1);
// The line is written in quick-set notation.

Expand Down

0 comments on commit 68a8e23

Please sign in to comment.