Workflow - Project organizer
-
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.
@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.
@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
@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
. -
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.