aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/cppeditor/CppEditor.json.in
Commit message (Collapse)AuthorAgeFilesLines
* PluginSpecs: Change URLs from http:// to https://Alessandro Portale39 hours1-1/+1
| | | | | | | | | | Avoid the redirect that is inevitable nowerdays. Also, change necessitas.kde.org to www.qt.io, since the orgininal page is offline. Change-Id: Ib1823f0df97d2df87822fd2bb7552e2f2c7e971e Reviewed-by: Tim Jenssen <tim.jenssen@qt.io>
* Build: Change plugin json.in files to CMake styleEike Ziller2023-07-251-110/+110
| | | | | | | | | | | | | They were still using variables in qmake style. Directly use CMake variables in the json.in files and remove the no longer needed escaping of quotes. Adds a fatal message if it detects the old style in a .json.in file for easier porting. Change-Id: I8de88d8db2da55781f0e9d72eda03f943723188e Reviewed-by: Leena Miettinen <riitta-leena.miettinen@qt.io> Reviewed-by: Cristian Adam <cristian.adam@qt.io>
* Fix that .ui files could be opened in C++ editorEike Ziller2021-10-071-1/+1
| | | | | | | | | | | | | | | | | | | The glob "*.ui" is unfortunately not unique in the mime database, so it falls back to using the mime magic to determine the mime type. That process is unfortunately defined by the "standard" in a most useless way: Even if a mime type matches both by glob and by mime magic, a mime type that does not match by glob can be preferred, if its mime magic matches either with a higher priority, or with the same priority but is alphabetically "smaller" than the other mime type. Reduce the priority of the "#include" mime magic for the text/x-c++hdr mime type, so it is lower than the mime magic of the application/x- designer mime type. Fixes: QTCREATORBUG-21773 Change-Id: Idfb9ab509c13563b50381b098d643f6fa9292f27 Reviewed-by: Christian Kandeler <christian.kandeler@qt.io> Reviewed-by: David Schulz <david.schulz@qt.io>
* CppEditor: add *.qdocinc extenstion to the text/x-qdoc mime typeDavid Schulz2021-09-021-0/+1
| | | | | | Fixes: QTCREATORBUG-26203 Change-Id: I4195914d0f89df679cba51d4eb586cb9ad08c950 Reviewed-by: Eike Ziller <eike.ziller@qt.io>
* Merge CppTools into CppEditorChristian Kandeler2021-09-011-1/+106
| | | | | | | | | | | | | | | | There was no proper separation of responsibilities between these plugins. In particular, CppTools had lots of editor-related functionality, so it's not clear why it was separated out in the first place. In fact, for a lot of code, it seemed quite arbitrary where it was put (just one example: switchHeaderSource() was in CppTools, wheras switchDeclarationDefinition() was in CppEditor). Merging the plugins will enable us to get rid of various convoluted pseudo-abstractions that were only introduced to keep up the artificial separation. Change-Id: Iafc3bce625b4794f6d4aa03df6cddc7f2d26716a Reviewed-by: Christian Stenger <christian.stenger@qt.io>
* Fix copyright year in plugin info, --version, and macOS infoEike Ziller2017-08-241-1/+1
| | | | | | | | By using the new QTCREATOR_COPYRIGHT_YEAR variable Task-number: QTCREATORBUG-18612 Change-Id: I3bcf0319660d210436d3130c00f43325c460a66c Reviewed-by: Kai Koehne <kai.koehne@qt.io>
* Update License according to agreement with Free Qt FoundationTobias Hunger2016-01-191-3/+3
| | | | | | | * Update files in src/plugins Change-Id: Ia5d77fad7d19d4bb3498e78661982f68729adb22 Reviewed-by: Tobias Hunger <tobias.hunger@theqtcompany.com>
* Update LicenseEike Ziller2015-01-161-4/+4
| | | | | Change-Id: I711d5fb475ef814a1dc9d2822740e827f3f67125 Reviewed-by: Alessandro Portale <alessandro.portale@digia.com>
* License update.Eike Ziller2014-10-151-1/+1
| | | | | Change-Id: I0acde2c3b995693de682679471f03af85bdd0a61 Reviewed-by: Alessandro Portale <alessandro.portale@digia.com>
* ExtensionSystem: Use Qt 5 plugin metadata instead of .pluginspec filesEike Ziller2014-09-021-0/+19
Change-Id: I2b2c704260c613985a4bda179658ec1f8879e70f Reviewed-by: Christian Kandeler <christian.kandeler@digia.com> Reviewed-by: Christian Stenger <christian.stenger@digia.com> Reviewed-by: Daniel Teske <daniel.teske@digia.com> Reviewed-by: hjk <hjk121@nokiamail.com>