- 06 Feb, 2015 13 commits
-
-
Orgad Shaneh authored
Mostly done using the following ruby script: Dir.glob('**/*.cpp').each { |file| next if file =~ %r{src/shared/qbs|/qmljs/} s = File.read(file) s.scan(/^using namespace (.*);$/) { ns = $1 t = s.gsub(/^(.*)\b#{ns}::((?!Const)[A-Z])/) { |m| before = $1 char = $2 if before =~ /"|\/\/|\\|using|SIGNAL|SLOT|Q_/ m else before + char end } if t != s puts file File.open(file, 'w').write(t) end } } Change-Id: I1d05d48b23f44e3d589cc2a790803714786b57d2 Reviewed-by:
Christian Kandeler <christian.kandeler@theqtcompany.com> Reviewed-by:
hjk <hjk@theqtcompany.com>
-
Orgad Shaneh authored
Change-Id: I6ae4d7652db9d83c24009de9f59bd865c39db8bc Reviewed-by:
BogDan Vatra <bogdan@kde.org>
-
Tim Jenssen authored
Change-Id: I92451d983f685df18651d700ed28a8eb275d2ea1 Reviewed-by:
Thomas Hartmann <Thomas.Hartmann@digia.com>
-
hjk authored
Change-Id: I61360b151ac8e6181b0635437468b4cd897c9ee8 Reviewed-by:
Christian Stenger <christian.stenger@theqtcompany.com>
-
Montel Laurent authored
Change-Id: I31078e08f46892e94597f48fd27057a16039eb5a Reviewed-by:
hjk <hjk@theqtcompany.com>
-
hjk authored
Mostly the timestamp and mechanical renaming. Change-Id: I9a57302cba454b3c5cf6ce5c8279f817bf85cf2e Reviewed-by:
Christian Stenger <christian.stenger@theqtcompany.com>
-
Orgad Shaneh authored
Mostly done using the following ruby script: Dir.glob('**/*.cpp').each { |file| next if file =~ %r{src/shared/qbs|/qmljs/} s = File.read(file) s.scan(/^using namespace (.*);$/) { ns = $1 t = s.gsub(/^(.*)\b#{ns}::((?!Const)[A-Z])/) { |m| before = $1 char = $2 if before =~ /"|\/\/|\\|using|SIGNAL|SLOT|Q_/ m else before + char end } if t != s puts file File.open(file, 'w').write(t) end } } Change-Id: Ief087658e2adc337ee02c49f0fb406597114df07 Reviewed-by:
Christian Kandeler <christian.kandeler@theqtcompany.com> Reviewed-by:
hjk <hjk@theqtcompany.com>
-
Thomas Hartmann authored
Change-Id: Ie84517af3ce683505103bb9a868d7f2cbc2f2fdd Reviewed-by:
Leena Miettinen <riitta-leena.miettinen@theqtcompany.com> Reviewed-by:
Tim Jenssen <tim.jenssen@theqtcompany.com>
-
Orgad Shaneh authored
Mostly done using the following ruby script: Dir.glob('**/*.cpp').each { |file| next if file =~ %r{src/shared/qbs|/qmljs/} s = File.read(file) s.scan(/^using namespace (.*);$/) { ns = $1 t = s.gsub(/^(.*)\b#{ns}::((?!Const)[A-Z])/) { |m| before = $1 char = $2 if before =~ /"|\/\/|\\|using|SIGNAL|SLOT|Q_/ m else before + char end } if t != s puts file File.open(file, 'w').write(t) end } } Change-Id: I5c6690f51488bf8ca3610ba9fb11e6e5fd814aaa Reviewed-by:
Christian Kandeler <christian.kandeler@theqtcompany.com> Reviewed-by:
hjk <hjk@theqtcompany.com>
-
Orgad Shaneh authored
Mostly done using the following ruby script: Dir.glob('**/*.cpp').each { |file| next if file =~ %r{src/shared/qbs|/qmljs/} s = File.read(file) s.scan(/^using namespace (.*);$/) { ns = $1 t = s.gsub(/^(.*)\b#{ns}::((?!Const)[A-Z])/) { |m| before = $1 char = $2 if before =~ /"|\/\/|\\|using|SIGNAL|SLOT|Q_/ m else before + char end } if t != s puts file File.open(file, 'w').write(t) end } } Change-Id: I44745947f315b73f0b983d4362f884580dc2d94b Reviewed-by:
BogDan Vatra <bogdan@kde.org>
-
Thomas Hartmann authored
Change-Id: Id81ad808e826813334c6f157331c21fe51dfe69c Reviewed-by:
Tim Jenssen <tim.jenssen@theqtcompany.com>
-
Thomas Hartmann authored
Change-Id: Id06a24e1c17eea3f7e4d5231e68ade49cdf775f4 Reviewed-by:
Tim Jenssen <tim.jenssen@theqtcompany.com>
-
hjk authored
Lambda makes it possible. Change-Id: I26a4df71dcd24b76a4f0d6d67545b2e1c6ba2412 Reviewed-by:
hjk <hjk@theqtcompany.com>
-
- 05 Feb, 2015 18 commits
-
-
hjk authored
This was a debugging aid that has not been needed for a while. Change-Id: Ia79e8e91b6648bdb807836443b01dd325d819640 Reviewed-by:
hjk <hjk@theqtcompany.com>
-
hjk authored
They had been created for use with GDB, but are more general nowadays. s/GdbResponse/DebuggerResponse/, s/GdbResultClass/ResultClass, etc Change-Id: Idfa3e280cdda882a8b3f02dff7e7d993e7e82d03 Reviewed-by:
hjk <hjk@theqtcompany.com>
-
Orgad Shaneh authored
Mostly done using the following ruby script: Dir.glob('**/*.cpp').each { |file| next if file =~ %r{src/shared/qbs|/qmljs/} s = File.read(file) s.scan(/^using namespace (.*);$/) { ns = $1 t = s.gsub(/^(.*)\b#{ns}::((?!Const)[A-Z])/) { |m| before = $1 char = $2 if before =~ /"|\/\/|\\|using|SIGNAL|SLOT|Q_/ m else before + char end } if t != s puts file File.open(file, 'w').write(t) end } } Change-Id: I8ef73f4861069dcd7edf5e73b397d60609d4b476 Reviewed-by:
Fawzi Mohamed <fawzi.mohamed@theqtcompany.com>
-
Joerg Bornemann authored
Consider having files with the same name in different subdirectories of your project. The FileInProjectFinder will now choose the best matching file path, which is the one that has the longest right-aligned common substring with the path to find. For the candidates ["/home/jim/MyProject/Resources/qml/1/foo.qml", "/home/jim/MyProject/Resources/qml/2/foo.qml"] and the file path to find being "/SomeWhere/Else/qml/2/foo.qml" the ranks are 8 and 10. Therefore, the second path is chosen. Task-number: QTCREATORBUG-12908 Change-Id: I6225fd1dce8cc79a90d02ae0a54cdf80f75f45af Reviewed-by:
Kai Koehne <kai.koehne@theqtcompany.com> Reviewed-by:
Ulf Hermann <ulf.hermann@theqtcompany.com>
-
Orgad Shaneh authored
... in the submit editor Change-Id: I632195429390320836719cbdecf1aec22db08d2f Reviewed-by:
Tobias Hunger <tobias.hunger@theqtcompany.com>
-
hjk authored
Less stylish options for more uniform user code. Change-Id: Ie9a6558101383a844efa25ba3ab59b4b824ad89f Reviewed-by:
Christian Stenger <christian.stenger@theqtcompany.com>
-
Orgad Shaneh authored
Change-Id: I476bcfb38c6c0d48f6ff8102aa8f2876d89d167a Reviewed-by:
Tobias Hunger <tobias.hunger@theqtcompany.com>
-
Tobias Hunger authored
Task-number: QTCREATORBUG-13930 Change-Id: I3294919f83f0f4f3ee7e4473db7c1336f730c076 Reviewed-by:
Leena Miettinen <riitta-leena.miettinen@theqtcompany.com>
-
hjk authored
Change-Id: I50a026d6af2874aa78db98b0df1fcbe233c88b1b Reviewed-by:
hjk <hjk@theqtcompany.com>
-
hjk authored
Change-Id: Id9fd398e9f66494163d5a1e4d6f098044c2b9ff2 Reviewed-by:
Daniel Teske <daniel.teske@theqtcompany.com>
-
hjk authored
... to avoid name duplication with base class. Change-Id: I02d104688e068f1ea1f51bf2e5eb43a3fd7aa551 Reviewed-by:
Nikolai Kosjar <nikolai.kosjar@theqtcompany.com>
-
hjk authored
In preparation for re-use through LLDB. Not yet functional there. Change-Id: Ia924f1499a1bbaebf3dccbe15152f324058b1677 Reviewed-by:
hjk <hjk@theqtcompany.com>
-
hjk authored
Change-Id: Id0b374b4b0bd3d14fb73fae28269778db5ae3dc7 Reviewed-by:
hjk <hjk@theqtcompany.com>
-
hjk authored
... and make it work with LLDB. Change-Id: Idaec029942dbcc726931781caff830173f7b126a Reviewed-by:
hjk <hjk@theqtcompany.com>
-
hjk authored
Change-Id: I68ee1b106e1cd6e8ad5ce99b226860c528698520 Reviewed-by:
hjk <hjk@theqtcompany.com>
-
Tim Sander authored
Change-Id: Iaefbebaed43afb73f8b0c7ade4de38c7e33719ff Reviewed-by:
Denis Shienkov <denis.shienkov@gmail.com> Reviewed-by:
hjk <hjk@theqtcompany.com>
-
Orgad Shaneh authored
The action was triggered after the focused widget was reset. Change-Id: I093d827472fa608649f98ac1339e957532965c0d Reviewed-by:
hjk <hjk@theqtcompany.com>
-
Nikolai Kosjar authored
If there is no plugin object, then the plugin was not loaded. Change-Id: I793825640174ed8e3d07bf9393afe69818e19db0 Reviewed-by:
Christian Stenger <christian.stenger@theqtcompany.com>
-
- 04 Feb, 2015 9 commits
-
-
Lorenz Haas authored
Instead of using "arg" for the generated getter/setter/signal argument try to detect a proper name. Task-number: QTCREATORBUG-12656 Change-Id: Iddaeb1f1d490af003d172d515033d85d778c10df Reviewed-by:
Nikolai Kosjar <nikolai.kosjar@theqtcompany.com>
-
Orgad Shaneh authored
Change-Id: I09c15c797d2cc95f944413a21a37c5a513eed227 Reviewed-by:
Nikolai Kosjar <nikolai.kosjar@theqtcompany.com>
-
Tobias Hunger authored
Task-number: QTCREATORBUG-13889 Change-Id: I8a21665ce03a19ea96c09e9a5ccea59af995570d Reviewed-by:
Richard J. Moore <rich@kde.org> Reviewed-by:
Eike Ziller <eike.ziller@theqtcompany.com>
-
Ulf Hermann authored
Change-Id: I324a9a1733d1d0a38bf73c8178d5a97cd60c25c1 Reviewed-by:
Joerg Bornemann <joerg.bornemann@theqtcompany.com>
-
hjk authored
Change-Id: I58ee1b106e1cd6e8ad5ce99b226860c528698520 Reviewed-by:
hjk <hjk@theqtcompany.com>
-
hjk authored
Change-Id: I1b10b2f6a241c6061ac5ee77825aa8500cb7097f Reviewed-by:
hjk <hjk@theqtcompany.com>
-
Orgad Shaneh authored
Mostly done using the following ruby script: Dir.glob('**/*.cpp').each { |file| next if file =~ %r{src/shared/qbs|/qmljs/} s = File.read(file) s.scan(/^using namespace (.*);$/) { ns = $1 t = s.gsub(/^(.*)\b#{ns}::((?!Const)[A-Z])/) { |m| before = $1 char = $2 if before =~ /"|\/\/|\\|using|SIGNAL|SLOT|Q_/ m else before + char end } if t != s puts file File.open(file, 'w').write(t) end } } Change-Id: I6fbe13ddc1485efe95c3156097bf41d90c0febac Reviewed-by:
Nikolai Kosjar <nikolai.kosjar@theqtcompany.com>
-
Orgad Shaneh authored
Change-Id: Ieb2ba37c0a31ebf89d5d60451022784043945cc4 Reviewed-by:
Nikolai Kosjar <nikolai.kosjar@theqtcompany.com>
-
Tobias Hunger authored
This is more in line with what we do elsewhere. Change-Id: If5fb57a498c021c2c2f830d9aaa375bc13afeb19 Reviewed-by:
Orgad Shaneh <orgads@gmail.com>
-