Don't force a fixed integer size

This commit is contained in:
Moritz Bunkus 2011-10-30 21:20:37 +01:00
parent 3f9f39a96e
commit b7ba642efa
2 changed files with 5 additions and 5 deletions

View File

@ -41,12 +41,12 @@ enum job_status_e {
JOBS_FAILED
};
typedef struct {
int32_t id;
struct job_t {
int id;
job_status_e status;
int32_t added_on, started_on, finished_on;
int added_on, started_on, finished_on;
wxString *description, *log;
} job_t;
};
extern std::vector<job_t> jobs;

View File

@ -125,7 +125,7 @@ public:
wxButton *b_start_muxing, *b_copy_to_clipboard, *b_add_to_jobqueue;
int32_t last_job_id;
int last_job_id;
bool muxing_in_progress;