- 12 Feb, 2014 1 commit
-
-
Orgad Shaneh authored
Done using the following ruby script: Dir.glob('**/*.h').each { |file| if File.file?(file) s = File.read(file) t = s.gsub(/^namespace .+ \{\n\s*class .*;\n\s*\}.*$/) { |m| m.gsub(/\n\s*/, ' ').gsub(/\s*\/\/.*$/, '') } if t != s puts file File.open(file, 'w').write(t) end end } Change-Id: Iffcb966e90eb8e1a625eccd5dd0b94f000ae368e Reviewed-by:
hjk <hjk121@nokiamail.com>
-
- 08 Jan, 2014 2 commits
-
-
hjk authored
No need to have a single treeview in a .ui file, and one step closer to make it searchable. Change-Id: I3aa27ac695ea3c55000473ae56e8c5b0330c1adf Reviewed-by:
Eike Ziller <eike.ziller@digia.com>
-
Robert Loehning authored
Change-Id: Ib5423fdd064e4546f848c0b640b0ed0514c26d3a Reviewed-by:
Leena Miettinen <riitta-leena.miettinen@digia.com> Reviewed-by:
Kai Koehne <kai.koehne@digia.com>
-
- 18 Nov, 2013 1 commit
-
-
Thiago Macieira authored
There are two important benefits in using this variable: * on systems where the library isn't libdl, we now get it right (HP-UX, for example, has libdld). * on systems where the library isn't necessary, we won't add anything (the BSDs, including Darwin) Change-Id: Ibf8155fd664b426165e55a0b95bf6a2c33dbf1d0 Reviewed-by:
Eike Ziller <eike.ziller@digia.com> Reviewed-by:
Friedemann Kleint <Friedemann.Kleint@digia.com> Reviewed-by:
Oswald Buddenhagen <oswald.buddenhagen@digia.com>
-
- 14 Nov, 2013 1 commit
-
-
Eike Ziller authored
Change-Id: Id5f383f58125c44496a3d6936b27638bce48622d Reviewed-by:
Tim Jenssen <tim.jenssen@digia.com> Reviewed-by:
Kai Koehne <kai.koehne@digia.com>
-
- 22 Oct, 2013 1 commit
-
-
Friedemann Kleint authored
They are a hassle for translators and reviewers alike. Change-Id: I07c1b61e8b6719e54fdc1f69cf63f573119a6776 Reviewed-by:
hjk <hjk121@nokiamail.com> Reviewed-by:
Robert Loehning <robert.loehning@digia.com> Reviewed-by:
Eike Ziller <eike.ziller@digia.com>
-
- 10 Oct, 2013 1 commit
-
-
Nikolai Kosjar authored
Only methods as programming functions are affected. Besides renaming some actions like "Switch Between Function Declaration/Definition" this mostly touches (api) code comments. This is a follow-up patch to commit 872bfb70. Change-Id: Icb65e8d73b59a022f8885b14df497169543a3b92 Reviewed-by:
hjk <hjk121@nokiamail.com>
-
- 09 Oct, 2013 1 commit
-
-
Christian Kandeler authored
Change-Id: I396d970fafea1fd0b4c4d73883796662a1d0064b Reviewed-by:
Joerg Bornemann <joerg.bornemann@digia.com>
-
- 27 Sep, 2013 1 commit
-
-
hjk authored
Change-Id: If36658de6f68f552f93830ba4f1cfa9994a2e44c Reviewed-by:
Tobias Hunger <tobias.hunger@digia.com>
-
- 09 Sep, 2013 2 commits
-
-
Leena Miettinen authored
Use standard wording and fix some and style issues. Change-Id: I6c226f8b8600833666f1da34f1f1e71cb333f30a Reviewed-by:
Tobias Hunger <tobias.hunger@digia.com>
-
Christian Kandeler authored
Change-Id: I7049fcaab77639c17c4d0e74f7d9360a80fafcaa Reviewed-by:
Joerg Bornemann <joerg.bornemann@digia.com>
-
- 05 Sep, 2013 1 commit
-
-
Friedemann Kleint authored
The <platform> element may contain a regular expression matching the names of the platforms on which the plugin works. Task-number: QTCREATORBUG-9002 Change-Id: Ic816cfed69a5dd2c4112c976843b9106ba2cbd22 Reviewed-by:
Daniel Teske <daniel.teske@digia.com> Reviewed-by:
hjk <hjk121@nokiamail.com>
-
- 04 Sep, 2013 1 commit
-
-
Nikolai Kosjar authored
...if no settings path is specified by the user. The default settins path for tests will be set to the system's temporary directory + "/qtc-${IDE_VERSION_LONG}-test-settings". Change-Id: Ibeaf8883c80169b4d6a3a97020a16f910292d67a Reviewed-by:
Orgad Shaneh <orgads@gmail.com> Reviewed-by:
Christian Stenger <christian.stenger@digia.com>
-
- 30 Aug, 2013 2 commits
-
-
Tobias Hunger authored
Change-Id: I0d0e021a272f818746d2482a5ba0c536bf125539 Reviewed-by:
hjk <hjk121@nokiamail.com>
-
hjk authored
Change-Id: I6ce4443115c359c2c9588ffa615d13c29c249df2 Reviewed-by:
Tobias Hunger <tobias.hunger@digia.com>
-
- 28 Aug, 2013 1 commit
-
-
Friedemann Kleint authored
Avoid unnecessary string allocations, fix error reporting which would pass PluginSpec::name instead of element to the error message. Task-number: QTCREATORBUG-9002 Change-Id: I0d136ef27f4226e1ba79e74ddab6b63cf0f20c74 Reviewed-by:
hjk <hjk121@nokiamail.com>
-
- 26 Aug, 2013 1 commit
-
-
Nikolai Kosjar authored
Example: ./qtcreator -test CppTools,"test_cpplocatorfilters_*" If test data is specified, it will be applied to all matching test functions. Change-Id: I579d9aa6ac3d3808ea7e71db3c067d468125569b Reviewed-by:
Daniel Teske <daniel.teske@digia.com>
-
- 25 Jul, 2013 1 commit
-
-
Nikolai Kosjar authored
Usually the plugin tests are executed after the session manager evaluated the command line arguments. This is just fine for the file and token tests of the CppEditor (fileandtokenactions_test.cpp) since these depend on the files and projects passed in via command line. Running qtcreator within valgrind reverses the sequence and makes it impossible to execute the mentioned tests. Fixed by starting the tests after the plugin initialization is done. Change-Id: I7cc392b7da7e0d98e0ce44edba2e3abceb84fad8 Reviewed-by:
Friedemann Kleint <Friedemann.Kleint@digia.com> Reviewed-by:
Christian Stenger <christian.stenger@digia.com>
-
- 17 Jul, 2013 1 commit
-
-
Orgad Shaneh authored
Change-Id: I1309db70e98d678e150388c76ce665e988fdf081 Reviewed-by:
Eike Ziller <eike.ziller@digia.com>
-
- 20 Jun, 2013 1 commit
-
-
Leena Miettinen authored
QDoc does some magic with the \class and \namespaces and \brief commands, so the following wording must be used: "The xxx class yyy ..." Change-Id: Id231f30e8464898b776888d5423523de404aae34 Reviewed-by:
Eike Ziller <eike.ziller@digia.com>
-
- 05 Jun, 2013 1 commit
-
-
Orgad Shaneh authored
They are unneeded, some of them are unmaintained Change-Id: I0ad87e152d8e2328b486b2f904f7cf9613004afe Reviewed-by:
Eike Ziller <eike.ziller@digia.com>
-
- 27 May, 2013 1 commit
-
-
Christian Kandeler authored
These cause a warning now. Change-Id: I4c4e9c3e11e7f97e66a4bcdd708489fafc8f0606 Reviewed-by:
Joerg Bornemann <joerg.bornemann@digia.com>
-
- 23 May, 2013 1 commit
-
-
Leena Miettinen authored
QDoc cannot find functions if the signature in the \fn command is not identical to the declaration, including 'const' qualifiers. Removed the \fn where the documentation comes immediately before the function, as qdoc does not need it in that case. Change-Id: If6a2a2e2d58b394905c803787d2a93489049e4ca Reviewed-by:
Eike Ziller <eike.ziller@digia.com>
-
- 04 Apr, 2013 1 commit
-
-
Eike Ziller authored
Change-Id: I209ebb85ad2a3cc32be0c45ee37ba4918ec42828 Reviewed-by:
hjk <hjk121@nokiamail.com>
-
- 03 Apr, 2013 2 commits
-
-
Oswald Buddenhagen authored
the information is redundant now Change-Id: Icc8c8b4ace11538d45c6c9e1dbe5a7976f4743e1 Reviewed-by:
Tobias Hunger <tobias.hunger@digia.com> Reviewed-by:
Eike Ziller <eike.ziller@digia.com>
-
Oswald Buddenhagen authored
instead of directly including the respective pri files in *_dependencies.pri, set variables and let qtcreator.pri resolve them to includes. this will allow us to re-use the dependency info elsewhere. Change-Id: Iaa33924e428ac0409660f42df2f98a7978452d3e Reviewed-by:
Eike Ziller <eike.ziller@digia.com> Reviewed-by:
Tobias Hunger <tobias.hunger@digia.com> Reviewed-by:
Oswald Buddenhagen <oswald.buddenhagen@digia.com>
-
- 02 Apr, 2013 2 commits
-
-
Oswald Buddenhagen authored
Change-Id: I4025539f3875e79f03743ba9ed3fd09cd31b998d Reviewed-by:
Tobias Hunger <tobias.hunger@digia.com>
-
Oswald Buddenhagen authored
Change-Id: I25645bb625b467c6f9d895ff89a70acd6a25683e Reviewed-by:
Tobias Hunger <tobias.hunger@digia.com>
-
- 21 Mar, 2013 1 commit
-
-
Nikolai Kosjar authored
Some tests will explicitly depend on the project/session provided on the command line. Change-Id: I6ee9388caf54683a3e055378eda990c8f9bbcdcf Reviewed-by:
Daniel Teske <daniel.teske@digia.com>
-
- 18 Mar, 2013 1 commit
-
-
Nikolai Kosjar authored
Change-Id: I7e7894c7e436d7eae62429ebc3f97bba4d6e3205 Reviewed-by:
Daniel Teske <daniel.teske@digia.com>
-
- 15 Mar, 2013 1 commit
-
-
Orgad Shaneh authored
Change-Id: I06bd4425008103be3a4c8f64b6dff8f7df30c552 Reviewed-by:
Leena Miettinen <riitta-leena.miettinen@digia.com> Reviewed-by:
Eike Ziller <eike.ziller@digia.com>
-
- 20 Feb, 2013 3 commits
-
-
Yuchen Deng authored
Change-Id: Icc3b76f277de27d7d099b23f0748d37b757dbe68 Reviewed-by:
Tobias Hunger <tobias.hunger@digia.com>
-
Yuchen Deng authored
Change-Id: I877102cae4a407b15ae6c41f1cf5c40ce704807a Reviewed-by:
Tobias Hunger <tobias.hunger@digia.com>
-
Yuchen Deng authored
Change-Id: I8de46de3ea349fc7c16e0024eb434ffe8f586be8 Reviewed-by:
Tobias Hunger <tobias.hunger@digia.com>
-
- 19 Feb, 2013 1 commit
-
-
Daniel Teske authored
This loads a plugin that is disabled by default. Change-Id: Ibbc9849c417519904fe1e69a46f93a7cc1c7edc8 Reviewed-by:
Christian Kandeler <christian.kandeler@digia.com>
-
- 18 Feb, 2013 1 commit
-
-
Daniel Teske authored
This is what it actually is. Change-Id: I2ea2e77edc3fd80eb1e25156edc7a59e86dfac9a Reviewed-by:
Christian Kandeler <christian.kandeler@digia.com>
-
- 12 Feb, 2013 1 commit
-
-
hjk authored
Change-Id: If47c615eb6e7e5f927f514c7c6fd8c8bbe595fa0 Reviewed-by:
Friedemann Kleint <Friedemann.Kleint@digia.com>
-
- 07 Feb, 2013 1 commit
-
-
Friedemann Kleint authored
Change-Id: I1f7a07bc08f07c3f3bcb95e56ab4258e3e0b9ab0 Reviewed-by:
hjk <hjk121@nokiamail.com>
-
- 06 Feb, 2013 2 commits
-
-
hjk authored
Change-Id: Ieeec4be993b1c53a59407349d365a6aaf1a92e32 Reviewed-by:
Friedemann Kleint <Friedemann.Kleint@digia.com>
-
Leena Miettinen authored
The \i and \o commands were replaced with \li and \bold was replaced with \b in QDoc for Qt 5. The \input command was replaced with \include in the docs. Change-Id: I257d1bebb8ebc739ca20e0d29fcf0406ecb14534 Reviewed-by:
Oswald Buddenhagen <oswald.buddenhagen@digia.com>
-