summaryrefslogtreecommitdiff
path: root/src/plugins/coreplugin/variablechooser.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Utils/ProjectExplorer: Move re-usabled bits of aspects to Utilshjk2020-09-231-649/+0
| | | | | | | | | | | Classes involved are BaseAspect and some derived classes, LayoutBuilder and VariableChooser. This is mostly mechanical, with various include/using changes to make it compile. Change-Id: I624a457f3555f102e541c4c71e33a9423af32250 Reviewed-by: Eike Ziller <eike.ziller@qt.io>
* VariableChooser: Avoid null pointer accessAlessandro Portale2020-09-011-2/+2
| | | | | | | | | | | | The code makes an effort to qobject_cast a pointer and check it, yet it accesses another pointer to do its thing. If the currentWidget is a QPlainTextEdit, this simply crashes. Amends: da3b83589b9 Change-Id: Ie79fa233b04c392fd5aa72cd512fcd0f0d829659 Reviewed-by: Eike Ziller <eike.ziller@qt.io>
* Merge remote-tracking branch 'origin/4.13' into masterEike Ziller2020-08-211-1/+3
|\ | | | | | | | | | | | | Conflicts: CMakeLists.txt Change-Id: I799060da2cb299bb0c49a3da3530fad18427a23c
| * Core: Fix filter of variable chooserChristian Stenger2020-08-191-1/+3
| | | | | | | | | | | | Fixes: QTCREATORBUG-24499 Change-Id: I787fc4342556d7062a1de5e7cb52d9d48532e719 Reviewed-by: Eike Ziller <eike.ziller@qt.io>
* | Core: Consider scroll bar when positioning the VariableChooserAlessandro Portale2020-08-121-2/+9
|/ | | | | Change-Id: Ia9fcade4f32bc852d5519c984b6e84ab443e044e Reviewed-by: Eike Ziller <eike.ziller@qt.io>
* Fix "Header" documentation in Core pluginEike Ziller2020-06-151-31/+33
| | | | | Change-Id: If3cbe51b47a3acba32429894dfb5154cd573967d Reviewed-by: Leena Miettinen <riitta-leena.miettinen@qt.io>
* Port QtCreator over to use filterRegularExpressionLars Knoll2020-04-011-3/+3
| | | | | | | | | | | | | | QSortFilterProxyModel::filterRegExp is going to go away in Qt6, so port over to use QRegularExpression instead. This required some changes where setFilterWildcard/FixedString() was being used, as those would instantiate QRegExp based filters in Qt 5, and will use QRegularExpression in Qt 6. Use the generic setFilterRegularExpression here, to keep things portable between 5 and 6. Change-Id: I6379be781aa3821b10ba783c088f82c1a0970911 Reviewed-by: Eike Ziller <eike.ziller@qt.io>
* Doc: Fix docs for Core::VariableChooserLeena Miettinen2020-03-231-6/+11
| | | | | | Fixes: QTCREATORBUG-23620 Change-Id: I6adf1f035968a0a00ec4acfbda90ac52130a7e24 Reviewed-by: Eike Ziller <eike.ziller@qt.io>
* Avoid warning on empty expressionshjk2019-07-231-1/+1
| | | | | | | | For some reason, Q_UNUSED includes already a semicolon, adding one on the user side creates an additional empty statement. Change-Id: I9c5e8fac381345a60792cb75e2938fd53958d3b0 Reviewed-by: Christian Stenger <christian.stenger@qt.io>
* Core: ModernizeAlessandro Portale2018-08-081-36/+33
| | | | | | | | | | | modernize-use-auto modernize-use-nullptr modernize-use-override modernize-use-using modernize-use-default-member-init (partially) Change-Id: Idf10d7ffb1d98a04edc09a25c35e4e9e3abe87b5 Reviewed-by: Eike Ziller <eike.ziller@qt.io>
* Core: Make preview work when FOO is both a variable and a prefixTobias Hunger2018-06-051-3/+1
| | | | | | | | | | | | | | | | | | Make the preview of variable "FOO" work in the variable chooser when the macroexpander also has a prefix "FOO:" defined. The MacroExpander::isPrefixVariable method is broken in this case: It will append ':' to the variable name if it is not there already and will thus return true for both "FOO" and "FOO:". So avoid calling it. In this case this does not even lead to more look-ups: As the variable chooser uses the description of the variable as a key, it contains "FOO:<value>" for the variable name and uses that checks whether "FOO:<value>:" is a prefix variable or not. That is always false. Task-number: QTCREATORBUG-20504 Change-Id: I3ea83a4df6d72aac157fa6777106966cc9e9976d Reviewed-by: Eike Ziller <eike.ziller@qt.io>
* Utils: Let FancyLineEdit have QIcons instead of QPixmapsAlessandro Portale2017-09-191-6/+2
| | | | | | | | | | | | A QIcon contains variants for different resolutions. This change makes sure that in a Multi-screen/mixed-scaling-mode scenario, the right of those resolutions is chosen, depending on which screen the line edit currently is. Task-number: QTCREATORBUG-18869 Change-Id: I8775e9e2c9b15c2863e9415751e1306f9e43c9aa Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io> Reviewed-by: Eike Ziller <eike.ziller@qt.io>
* Reduce usage of qApp in favor of static function callsAlessandro Portale2017-04-241-1/+1
| | | | | | | | | | | | Q*Application classes have unusually many static functions. In many cases in our code, these functions are unnecessarily called as instance functions, using the qApp helper. This patch replaces many occurencies of qApp with the according Q*Application classname. Change-Id: I6099a419fa7bf969891269c37ed7a9e817ef5124 Reviewed-by: hjk <hjk@qt.io>
* Use toByteArray() directlyMontel Laurent2017-04-141-1/+1
| | | | | Change-Id: Icaa88b711285307a6d242067eaca9db852ded04f Reviewed-by: Orgad Shaneh <orgads@gmail.com>
* VariableChooser: Use FancyLineEdit instead of QLineEditAlessandro Portale2017-02-151-4/+4
| | | | | | | | | Utils::FancyLineEdit is usually used for filter fields, since it already has the "Filter" place holder and a nice clear button. Change-Id: Ifc6244129f5b47ba29dd0d421f3c69f5e21e8aac Reviewed-by: hjk <hjk@qt.io> Reviewed-by: Serhii Moroz <frost.asm@gmail.com>
* VariableChooser: add filterSerhii Moroz2017-02-151-1/+38
| | | | | | Change-Id: I604b39f96ff303502949d581d094067025093ca0 Reviewed-by: hjk <hjk@qt.io> Reviewed-by: Tobias Hunger <tobias.hunger@qt.io>
* Core: Fix QModelIndex interaction for variable chooserChristian Stenger2016-11-111-6/+8
| | | | | | | | | The tree has a QSortFilterProxyModel, so we have to map the current index back to its source model to avoid using a wrong index. Change-Id: I78b6172a2c9b3d4255132e30e8eddf72dc95d5e4 Reviewed-by: hjk <hjk@qt.io>
* VariableChooser: Sort modelTobias Hunger2016-10-261-1/+5
| | | | | | Task-number: QTCREATORBUG-16670 Change-Id: I9dc3641409dbd351491f8b91795bb0adafcb686d Reviewed-by: hjk <hjk@qt.io>
* Move icons to UtilsUlf Hermann2016-08-051-3/+2
| | | | | | | This way we can use them from libraries, not only from plugins. Change-Id: Ic35cfd5f04d638d87606bf272b2c00ded1267c1b Reviewed-by: Alessandro Portale <alessandro.portale@qt.io>
* VariableChooser: Remove one use of TreeItem::setFlagshjk2016-07-291-12/+16
| | | | | | | | | | | One step towards the removal of the TreeItem::m_flags member that's unused in most instances. Instead of introducing another conversion, use a QByteArray to store the variable name. Change-Id: Icbe591988178faaf77db558d968843d8eb2b0160 Reviewed-by: Christian Stenger <christian.stenger@qt.io>
* Utils: Streamline TreeModel APIhjk2016-07-271-1/+1
| | | | | | | | | | | | | | The LeveledTreeModel case is general enough to cover the UniformTreeModel case, so merge them and rename to TreeModel. The former TreeModel is now BaseTreeModel. BaseTreeModels should not be instantiated directly, a tree model with non-uniform basic items is available as TreeModel<>. Done-with: Eike Ziller <eike.ziller@qt.io> Change-Id: I64a65617ab68c0cde39cf65f4bc092ef808ee6fb Reviewed-by: Christian Stenger <christian.stenger@qt.io>
* Core: New "Replace" iconAlessandro Portale2016-06-151-1/+3
| | | | | | | HighDPI capable and themable. Change-Id: I12b598a081f2ed30dd31b138fd605e71b6f28c20 Reviewed-by: Alessandro Portale <alessandro.portale@qt.io>
* Merge remote-tracking branch 'origin/3.6' into 4.0Oswald Buddenhagen2016-03-301-2/+6
|\
| * Fix crash in VariableChooserGiuseppe D'Angelo2016-03-241-2/+6
| | | | | | | | | | | | | | | | | | fce83bd9f84883f93829e6ca9eacf098b018a02d in qtbase causes a crash: setModel creates a new selection model, which calls currentChanged, which accesses an uninitialized member. Hence, protect the access to it. Change-Id: I144f40aa4286f1a9edba24519a30c08ff5091f57 Reviewed-by: hjk <hjk@theqtcompany.com>
* | VariableChooser: Create widgets before assigning modelsUlf Hermann2016-03-301-2/+2
| | | | | | | | | | | | | | | | | | With Qt 5.7 the currentChanged() callback is called immediately on QTreeView::setModel(), which leads to the label text being set. That crashes if the label hasn't been created, yet. Change-Id: I73763e1ac1c86215090a8f4b0118bc0cd286cf47 Reviewed-by: Tobias Hunger <tobias.hunger@theqtcompany.com>
* | Core: Use Qt5-style connectsOrgad Shaneh2016-02-031-1/+1
| | | | | | | | | | | | | | The heavy lifting was done by clazy. Change-Id: I2dde14919d917816d02117338205f8f861d8af0a Reviewed-by: Eike Ziller <eike.ziller@theqtcompany.com>
* | Update License according to agreement with Free Qt FoundationTobias Hunger2016-01-191-17/+12
|/ | | | | | | * Update files in src/plugins Change-Id: Ia5d77fad7d19d4bb3498e78661982f68729adb22 Reviewed-by: Tobias Hunger <tobias.hunger@theqtcompany.com>
* VariableManager: Do not try to expand PrefixesTobias Hunger2015-09-211-2/+5
| | | | | | | | | Resolving "Prefix:<value>" does not make any sense, so let's not do that. Task-number: QTCREATORBUG-15072 Change-Id: Ia9741f9b48d269a7be31163ad73c3bc232856419 Reviewed-by: hjk <hjk@theqtcompany.com>
* VariableChooser: Make help text selectablehjk2015-07-071-0/+1
| | | | | Change-Id: Ic588c09dec33476a0729c3dbf3313c827930d9e7 Reviewed-by: Eike Ziller <eike.ziller@theqtcompany.com>
* VariableChooser: Re-show current value in variable descriptionOrgad Shaneh2015-07-071-2/+7
| | | | | | | Lost in 3119d93b7981c3b245f584e9663839312c9f1675 Change-Id: I180cdc281821dab6da1c0729da12872cd7789555 Reviewed-by: hjk <hjk@theqtcompany.com>
* VariableChooser: Fix scrolling on keyboard navigationOrgad Shaneh2015-07-071-1/+1
| | | | | | Change-Id: Ia5cabc1d9df46129c22f9a84901632de5da3824e Reviewed-by: hjk <hjk@theqtcompany.com> Reviewed-by: Eike Ziller <eike.ziller@theqtcompany.com>
* Corelib: fix capitalization of variable chooser stringsLeena Miettinen2015-07-021-3/+3
| | | | | | | | Use book style capitalization for icon tooltips and menu items. Change-Id: I410ebf7be236ebf8b904c1555203f306eb569c99 Reviewed-by: hjk <hjk@theqtcompany.com>
* VariableChooser: Update variable description on keyboard navigationOrgad Shaneh2015-06-161-2/+8
| | | | | Change-Id: I716e4bd6325f0d00b1fa73ea4a76f185660c89a0 Reviewed-by: hjk <hjk@theqtcompany.com>
* TreeModel: Clean up TreeItem APIhjk2015-04-221-3/+9
| | | | | | | | | | | isLazy/populate was the first incarnation of the canFetchMore/ fetchMore mechanism which now can take over completely. So: - remove isLazy/populate - the use in VariableChooser Change-Id: I885d492c134fb6899759e19a73156b52df7a880a Reviewed-by: Eike Ziller <eike.ziller@theqtcompany.com>
* Fix missing of some translationsSergey Belyashov2015-03-241-5/+5
| | | | | | | Task-number: QTCREATORBUG-13649 Change-Id: I69f78b3b8d2366003bfce81a2afba0068e716d22 Reviewed-by: hjk <hjk@theqtcompany.com> Reviewed-by: Eike Ziller <eike.ziller@theqtcompany.com>
* Merge commit '3c85058694ee2e41658d17f524fb48f0b187d2fe'Eike Ziller2015-02-121-6/+6
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/libs/utils/tooltip/tipcontents.cpp src/libs/utils/tooltip/tipcontents.h src/plugins/android/androiddeployqtstep.cpp src/plugins/baremetal/baremetalconstants.h src/plugins/baremetal/baremetaldevice.cpp src/plugins/baremetal/baremetaldevice.h src/plugins/baremetal/baremetaldeviceconfigurationwidget.cpp src/plugins/baremetal/baremetaldeviceconfigurationwidget.h src/plugins/baremetal/baremetaldeviceconfigurationwizard.cpp src/plugins/baremetal/baremetaldeviceconfigurationwizardpages.cpp src/plugins/baremetal/baremetaldeviceconfigurationwizardpages.h src/plugins/baremetal/baremetalplugin.cpp src/plugins/baremetal/baremetalplugin.h src/plugins/baremetal/baremetalruncontrolfactory.cpp src/plugins/baremetal/baremetalruncontrolfactory.h src/plugins/cppeditor/cppcodemodelinspectordialog.cpp src/plugins/cppeditor/cppdoxygen_test.cpp src/plugins/cppeditor/cppdoxygen_test.h src/plugins/debugger/breakpointmarker.cpp src/plugins/debugger/debuggeritemmodel.cpp src/plugins/debugger/debuggeritemmodel.h src/plugins/debugger/loadcoredialog.cpp src/plugins/genericprojectmanager/cppmodelmanagerhelper.cpp src/plugins/projectexplorer/addnewmodel.cpp src/plugins/projectexplorer/addnewmodel.h src/plugins/projectexplorer/jsonwizard/jsonfieldpage.cpp src/plugins/qmlprofiler/abstracttimelinemodel.cpp src/plugins/qmlprofiler/abstracttimelinemodel.h src/plugins/qmlprofiler/notesmodel.cpp src/plugins/qmlprofiler/qml/CategoryLabel.qml src/plugins/qmlprofiler/qml/MainView.qml src/plugins/qmlprofiler/qml/Overview.js src/plugins/qmlprofiler/qml/Overview.qml src/plugins/qmlprofiler/qml/TimeDisplay.qml src/plugins/qmlprofiler/qml/TimeMarks.qml src/plugins/qmlprofiler/qmlprofilertimelinemodelproxy.cpp src/plugins/qmlprofiler/sortedtimelinemodel.cpp src/plugins/qmlprofiler/sortedtimelinemodel.h src/plugins/qmlprofiler/timelinemodelaggregator.cpp src/plugins/qmlprofiler/timelinemodelaggregator.h src/plugins/qmlprofiler/timelinerenderer.cpp src/plugins/qmlprofiler/timelinerenderer.h src/plugins/qmlprojectmanager/QmlProjectManager.json.in src/plugins/texteditor/findinfiles.cpp src/plugins/vcsbase/vcsconfigurationpage.cpp src/shared/qbs src/shared/scriptwrapper/interface_wrap_helpers.h src/shared/scriptwrapper/wrap_helpers.h tests/auto/qmlprofiler/abstracttimelinemodel/tst_abstracttimelinemodel.cpp tests/system/suite_debugger/tst_debug_empty_main/test.py tests/system/suite_debugger/tst_qml_js_console/test.py tests/system/suite_debugger/tst_qml_locals/test.py Change-Id: I67540b648f8b162496f4aa606b04d50c7c9125c6
| * Update LicenseEike Ziller2015-01-161-6/+6
| | | | | | | | | | Change-Id: I711d5fb475ef814a1dc9d2822740e827f3f67125 Reviewed-by: Alessandro Portale <alessandro.portale@digia.com>
* | Core: Remove unneeded qualificationsOrgad Shaneh2015-02-061-3/+3
|/ | | | | | | | | | | | | | | | | | | | | | | | | | | | 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>
* MacroExpander: Delay variable chooser populationhjk2014-12-011-16/+14
| | | | | | Change-Id: I4bf81bcf8bb4f14bf6c31f613d79e79380b666e0 Reviewed-by: Eike Ziller <eike.ziller@theqtcompany.com> Reviewed-by: hjk <hjk121@nokiamail.com>
* Hide variable chooser if current edit widget is hiddenEike Ziller2014-11-071-0/+2
| | | | | | | Change-Id: I4b908fd76602170a186b9e1430c7d0e65046d17d Task-number: QTCREATORBUG-13355 Reviewed-by: Robert Loehning <robert.loehning@theqtcompany.com> Reviewed-by: hjk <hjk121@nokiamail.com>
* VariableChooser: Remove 'always on top'Robert Loehning2014-11-061-1/+1
| | | | | Change-Id: Ib5cdf1b53f136671eb9152c86abb705af32e3029 Reviewed-by: Eike Ziller <eike.ziller@theqtcompany.com>
* VariableChooser: Fix closing with Escape keyEike Ziller2014-11-051-3/+8
| | | | | | Change-Id: Ibf0f344d50941255a28c19cf6914521c1c7b0cf6 Reviewed-by: hjk <hjk121@nokiamail.com> Reviewed-by: Eike Ziller <eike.ziller@theqtcompany.com>
* Add way to recursively link a variable chooser to suitable child widgethjk2014-11-051-0/+12
| | | | | Change-Id: Id4937fc4367cca96833c46db87e37ed6524bda0a Reviewed-by: Tobias Hunger <tobias.hunger@theqtcompany.com>
* Provide a facility to hide macros in the chooserhjk2014-11-051-1/+1
| | | | | | | ... and use it for the Current* fallbacks in the Kit expander. Change-Id: I1d346aa56647f6d3030bd4384eb89e2a27db6418 Reviewed-by: Orgad Shaneh <orgads@gmail.com>
* Variable chooser: Handle geometry updates of (line)editEike Ziller2014-10-221-12/+34
| | | | | | | | | | | | | | | | The setTextMargin call which makes room for the button, can result in sizeHint changes of the line edit, and therefore in relayouting and geometry changes. The patch also moves the escape key handling to the (line)edit instead of unconditionally the focus widget, since there is code to hide the chooser when the focus widget is not the (line)edit anyhow. Change-Id: I687307985ca95e63c16086b8e77c371f642ab060 Task-number: QTCREATORBUG-13221 Reviewed-by: hjk <hjk121@nokiamail.com> Reviewed-by: Christian Stenger <christian.stenger@digia.com> Reviewed-by: Tim Jenssen <tim.jenssen@digia.com>
* Make expanders work with subexpandershjk2014-10-211-51/+132
| | | | | Change-Id: I30bad85ce2fbaf1f02043b3d97f657461f5a1995 Reviewed-by: Tobias Hunger <tobias.hunger@theqtcompany.com>
* VariableChooser: Reworkhjk2014-10-151-70/+153
| | | | | | | | | | Allow multiple expanders to be registered for lineedits, e.g. a local and the global ones, and actually show them. Use a tree view in the chooser for somewhat more structured display. Change-Id: I769f92144e5249f45e54381de52aa6973eb20118 Reviewed-by: Tobias Hunger <tobias.hunger@theqtcompany.com>
* MacroExpander: Allow registering local expansionshjk2014-10-151-3/+3
| | | | | | | | | | | This allows a MacroExpander also to describe an expansion it can do which was restricted to the global VariableManager only. The global is now just a thin (unneeded) wrapper about new "standard" functionality. Change-Id: Ida7ca70cf3d319eae4220ea8d12f3dd1c0d4042c Reviewed-by: Tobias Hunger <tobias.hunger@theqtcompany.com>
* Merge remote-tracking branch 'origin/3.2'Eike Ziller2014-10-141-7/+8
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/libs/utils/ipaddresslineedit.cpp src/libs/utils/logging.h src/plugins/analyzerbase/AnalyzerBase.pluginspec.in src/plugins/android/Android.pluginspec.in src/plugins/android/androiddeploystep.cpp src/plugins/android/androiddeploystep.h src/plugins/android/androiddeploystepfactory.cpp src/plugins/android/androiddeploystepwidget.cpp src/plugins/android/androidpackagecreationfactory.cpp src/plugins/android/androidpackagecreationstep.cpp src/plugins/android/androidpackagecreationstep.h src/plugins/android/androidpackagecreationwidget.cpp src/plugins/android/androidpackagecreationwidget.h src/plugins/android/javafilewizard.cpp src/plugins/autotoolsprojectmanager/AutotoolsProjectManager.pluginspec.in src/plugins/baremetal/BareMetal.pluginspec.in src/plugins/bazaar/Bazaar.pluginspec.in src/plugins/beautifier/Beautifier.pluginspec.in src/plugins/bineditor/BinEditor.pluginspec.in src/plugins/bookmarks/Bookmarks.pluginspec.in src/plugins/clangcodemodel/ClangCodeModel.pluginspec.in src/plugins/clangcodemodel/clanghighlightingsupport.cpp src/plugins/clangcodemodel/clangsymbolsearcher.cpp src/plugins/classview/ClassView.pluginspec.in src/plugins/clearcase/ClearCase.pluginspec.in src/plugins/cmakeprojectmanager/CMakeProjectManager.pluginspec.in src/plugins/cmakeprojectmanager/cmakeeditorfactory.cpp src/plugins/cmakeprojectmanager/cmakehighlighter.cpp src/plugins/coreplugin/Core.pluginspec.in src/plugins/cpaster/CodePaster.pluginspec.in src/plugins/cppeditor/CppEditor.pluginspec.in src/plugins/cppeditor/cppfilewizard.cpp src/plugins/cpptools/CppTools.pluginspec.in src/plugins/cpptools/cpphighlightingsupportinternal.cpp src/plugins/cpptools/cppmodelmanagerinterface.cpp src/plugins/cpptools/cppmodelmanagerinterface.h src/plugins/cvs/CVS.pluginspec.in src/plugins/debugger/Debugger.pluginspec.in src/plugins/designer/Designer.pluginspec.in src/plugins/diffeditor/DiffEditor.pluginspec.in src/plugins/emacskeys/EmacsKeys.pluginspec.in src/plugins/fakevim/FakeVim.pluginspec.in src/plugins/genericprojectmanager/GenericProjectManager.pluginspec.in src/plugins/git/Git.pluginspec.in src/plugins/git/gitorious/gitorious.cpp src/plugins/git/gitorious/gitorious.h src/plugins/git/gitorious/gitoriousclonewizard.cpp src/plugins/git/gitorious/gitorioushostwidget.cpp src/plugins/git/gitorious/gitorioushostwidget.h src/plugins/git/gitorious/gitorioushostwizardpage.cpp src/plugins/git/gitorious/gitoriousprojectwidget.cpp src/plugins/git/gitorious/gitoriousprojectwidget.h src/plugins/git/gitorious/gitoriousprojectwizardpage.cpp src/plugins/git/gitorious/gitoriousprojectwizardpage.h src/plugins/git/gitorious/gitoriousrepositorywizardpage.cpp src/plugins/git/gitorious/gitoriousrepositorywizardpage.h src/plugins/glsleditor/GLSLEditor.pluginspec.in src/plugins/glsleditor/glsleditorfactory.cpp src/plugins/glsleditor/glslfilewizard.cpp src/plugins/helloworld/HelloWorld.pluginspec.in src/plugins/help/Help.pluginspec.in src/plugins/imageviewer/ImageViewer.pluginspec.in src/plugins/ios/Ios.pluginspec.in src/plugins/macros/Macros.pluginspec.in src/plugins/mercurial/Mercurial.pluginspec.in src/plugins/perforce/Perforce.pluginspec.in src/plugins/projectexplorer/ProjectExplorer.pluginspec.in src/plugins/pythoneditor/PythonEditor.pluginspec.in src/plugins/pythoneditor/pythoneditorwidget.cpp src/plugins/pythoneditor/wizard/pythonfilewizard.cpp src/plugins/qbsprojectmanager/QbsProjectManager.pluginspec.in src/plugins/qbsprojectmanager/defaultpropertyprovider.cpp src/plugins/qmakeprojectmanager/QmakeProjectManager.pluginspec.in src/plugins/qmakeprojectmanager/profileeditorfactory.cpp src/plugins/qmldesigner/QmlDesigner.pluginspec.in src/plugins/qmljseditor/QmlJSEditor.pluginspec.in src/plugins/qmljseditor/qmljseditorfactory.cpp src/plugins/qmljstools/QmlJSTools.pluginspec.in src/plugins/qmlprofiler/QmlProfiler.pluginspec.in src/plugins/qmlprojectmanager/QmlProjectManager.pluginspec.in src/plugins/qnx/Qnx.pluginspec.in src/plugins/qtsupport/QtSupport.pluginspec.in src/plugins/remotelinux/RemoteLinux.pluginspec.in src/plugins/resourceeditor/ResourceEditor.pluginspec.in src/plugins/resourceeditor/resourcewizard.h src/plugins/subversion/Subversion.pluginspec.in src/plugins/tasklist/TaskList.pluginspec.in src/plugins/texteditor/TextEditor.pluginspec.in src/plugins/texteditor/basetexteditor_p.h src/plugins/texteditor/basetextmark.cpp src/plugins/texteditor/codeassist/basicproposalitemlistmodel.h src/plugins/texteditor/codeassist/defaultassistinterface.h src/plugins/texteditor/codeassist/iassistproposalitem.cpp src/plugins/texteditor/itexteditor.cpp src/plugins/texteditor/itexteditor.h src/plugins/texteditor/itextmark.cpp src/plugins/texteditor/plaintexteditor.cpp src/plugins/texteditor/plaintexteditor.h src/plugins/texteditor/texteditoractionhandler.cpp src/plugins/todo/Todo.pluginspec.in src/plugins/updateinfo/UpdateInfo.pluginspec.in src/plugins/valgrind/Valgrind.pluginspec.in src/plugins/vcsbase/VcsBase.pluginspec.in src/plugins/welcome/Welcome.pluginspec.in src/plugins/winrt/WinRt.pluginspec.in tests/auto/debugger/temporarydir.h Change-Id: I254af8be8119fe9855287909e17d4b8ca9d2fc2f
| * License updateEike Ziller2014-10-091-7/+8
| | | | | | | | | | Change-Id: I3c22ef2685d7aa589f5d0ab74d693653a4c32082 Reviewed-by: Alessandro Portale <alessandro.portale@digia.com>