~widelands-dev/widelands/trunk

« back to all changes in this revision

Viewing changes to src/logic/map_revision.h

  • Committer: fios at foramnagaidhlig
  • Date: 2016-03-04 06:19:34 UTC
  • mfrom: (7850.1.3 bug-1395278-logic3)
  • Revision ID: fios@foramnagaidhlig.net-20160304061934-zdwvrpq7tjfi1yo6
Refactored remaining member variable names in src/logic.

Merged lp:~widelands-dev/widelands/bug-1395278-logic3

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
 
35
35
struct MapVersion {
36
36
 
37
 
        std::string m_map_source_url;
38
 
        std::string m_map_source_release;
39
 
        std::string m_map_creator_version;
40
 
        int32_t     m_map_version_major;
41
 
        int32_t     m_map_version_minor;
42
 
        uint32_t    m_map_version_timestamp;
 
37
        std::string map_source_url_;
 
38
        std::string map_source_release_;
 
39
        std::string map_creator_version_;
 
40
        int32_t     map_version_major_;
 
41
        int32_t     map_version_minor_;
 
42
        uint32_t    map_version_timestamp_;
43
43
 
44
44
        MapVersion();
45
45