~timo-jyrinki/ubuntu/saucy/qtcreator/add_workaround_back

« back to all changes in this revision

Viewing changes to src/libs/3rdparty/cplusplus/QtContextKeywords.cpp

  • Committer: Package Import Robot
  • Author(s): Felix Geyer
  • Date: 2011-11-18 16:18:49 UTC
  • mfrom: (1.1.16)
  • Revision ID: package-import@ubuntu.com-20111118161849-5t8jugl6egvs4iev
Tags: 2.4.0~rc-0ubuntu1
* New upstream release candidate.
* Drop 04_fix_ftbfs_arm_qreal.diff, merged upstream.
* Refresh 01_fix_installation_paths.diff.
* Compress binary packages with xz.

Show diffs side-by-side

added added

removed removed

Lines of Context:
110
110
      }
111
111
    }
112
112
  }
 
113
  if (s[0] == 'R') {
 
114
    if (s[1] == 'E') {
 
115
      if (s[2] == 'V') {
 
116
        if (s[3] == 'I') {
 
117
          if (s[4] == 'S') {
 
118
            if (s[5] == 'I') {
 
119
              if (s[6] == 'O') {
 
120
                if (s[7] == 'N') {
 
121
                  return Token_REVISION;
 
122
                }
 
123
              }
 
124
            }
 
125
          }
 
126
        }
 
127
      }
 
128
    }
 
129
  }
113
130
  return Token_not_Qt_context_keyword;
114
131
}
115
132