Skip to content

Commit

Permalink
Migrate to version numbers with buildnumber.
Browse files Browse the repository at this point in the history
Added Comment for removal of ModBase::isOneof
  • Loading branch information
LePresidente committed Dec 21, 2016
1 parent 1cf368c commit d1ed7ae
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
3 changes: 3 additions & 0 deletions src/mainwindow.ui
Original file line number Diff line number Diff line change
Expand Up @@ -732,6 +732,9 @@ p, li { white-space: pre-wrap; }
<property name="text">
<string>Sort</string>
</property>
<property name="visible">
<bool>false</bool>
</property>
<property name="icon">
<iconset resource="resources.qrc">
<normaloff>:/MO/gui/sort</normaloff>:/MO/gui/sort</iconset>
Expand Down
1 change: 1 addition & 0 deletions src/organizercore.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1239,6 +1239,7 @@ bool OrganizerCore::waitForProcessCompletion(HANDLE handle, LPDWORD exitCode)

DWORD res;
// Wait for a an event on the handle, a key press, mouse click or timeout
//TODO: Remove MOBase::isOneOf from this query as it was always returning true.
while (
res = ::MsgWaitForMultipleObjects(1, &handle, false, 500,
QS_KEY | QS_MOUSE),
Expand Down
3 changes: 2 additions & 1 deletion src/selfupdater.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,8 @@ SelfUpdater::SelfUpdater(NexusInterface *nexusInterface)

m_MOVersion = VersionInfo(version.dwFileVersionMS >> 16,
version.dwFileVersionMS & 0xFFFF,
version.dwFileVersionLS >> 16);
version.dwFileVersionLS >> 16,
version.dwFileVersionLS & 0xFFFF);
}


Expand Down

0 comments on commit d1ed7ae

Please sign in to comment.