summaryrefslogtreecommitdiff
path: root/SDL_Core/src/components/application_manager
Commit message (Collapse)AuthorAgeFilesLines
* deleted files weren't added to last commitrelease_3.0Justin Dickow2014-05-09601-57826/+0
|
* event_dispatcher: Don't advance STL iterator already at end()Brendan Shanks2014-04-021-2/+6
| | | | | | | | Advancing an STL vector iterator which is equal to end() is undefined. After erase(), observer_it was not being compared to end() before being incremented. Make sure the iterator gets compared to end() before incrementing again MSVC was throwing a runtime exception for this.
* request_controller: Don't advance STL iterator already at end()Brendan Shanks2014-04-021-1/+3
| | | | | | | | Advancing an STL vector iterator which is equal to end() is undefined. After erase(), it was not being compared to end() before being incremented. Make sure the iterator gets compared to end() before incrementing again MSVC was throwing a runtime exception for this.
* compare app_id as unsigned intJustin Dickow2014-03-191-11/+11
| | | | Signed-off-by: Justin Dickow <jjdickow@gmail.com>
* initial commit for API 3.0 (replaced all)Justin Dickow2014-03-18601-0/+57820