Workflow - Project organizer
-
wrote on 20 Sept 2017, 16:26 last edited by
A project organizer made with Qt 5. It helps to keep track of projects where the order of task completion is important.
Github link, the source code is attached to releases.
There is also an in-app wiki, for further information read the project Readme on Github. -
A project organizer made with Qt 5. It helps to keep track of projects where the order of task completion is important.
Github link, the source code is attached to releases.
There is also an in-app wiki, for further information read the project Readme on Github.The two links - "Source code (zip)" and "Source code (tar.gz)" - contain only compiled binaries and resources for Windows. There's no source code for this project that I could find.
-
The two links - "Source code (zip)" and "Source code (tar.gz)" - contain only compiled binaries and resources for Windows. There's no source code for this project that I could find.
wrote on 20 Sept 2017, 17:24 last edited by@kshegunov It is in the release description
-
@kshegunov It is in the release description
Indeed, it is. I find it odd that the links that say "source" are with binaries, though.
-
Indeed, it is. I find it odd that the links that say "source" are with binaries, though.
wrote on 20 Sept 2017, 18:24 last edited by@kshegunov Yes I know, but unfortunately I can't change it :/
-
@kshegunov Yes I know, but unfortunately I can't change it :/
Also, note that it doesn't compile cleanly with
g++
. Here's what I get:../Workflow/mainwindow.cpp: In member function 'void MainWindow::enableCurrentButtons()': ../Workflow/mainwindow.cpp:163:67: error: call of overloaded 'abs(std::vector<Task*>::size_type)' is ambiguous
-
Also, note that it doesn't compile cleanly with
g++
. Here's what I get:../Workflow/mainwindow.cpp: In member function 'void MainWindow::enableCurrentButtons()': ../Workflow/mainwindow.cpp:163:67: error: call of overloaded 'abs(std::vector<Task*>::size_type)' is ambiguous
wrote on 20 Sept 2017, 18:28 last edited by@kshegunov Thanks for reporting the problem, I'll look at it
-
@kshegunov Thanks for reporting the problem, I'll look at it
Well, there are more:
../Workflow/project.cpp:99:46: error: ambiguous overload for 'operator[]' (operand types are 'QString' and 'long int') tempByteArray[j] = fileString[fileIterator + j].digitValue();
You should compile it with
g++
to get it fully working. Also drop thatint_fast32_t
which is everywhere in the code, use a regular integer or one of Qt's predefinedqint8
/qint16
/qint32
/qint64
. -
wrote on 23 Sept 2017, 11:01 last edited by
I compiled with g++ (using Qt) but I didn't get any of your compile error. Anyway I dropped
int_fast32_t
and changed
abs(...)
inqAbs
. -
I compiled with g++ (using Qt) but I didn't get any of your compile error. Anyway I dropped
int_fast32_t
and changed
abs(...)
inqAbs
.Well, I told you what the compiler had reported. I'd tried with Qt 5.9.1 and gcc 7.2.0.
-
wrote on 24 Sept 2017, 11:44 last edited by
Sure, and I thank you very much :) I compiled the code with Qt 5.9.1 and 5.10 and gcc from MinGW 5.3.0 32bit, now I'll try to download gcc 7.2.0. Maybe the one from MinGW is not up to date
1/11