Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
F
flatpak-qt-creator
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Marco Bubke
flatpak-qt-creator
Commits
29fadd61
Commit
29fadd61
authored
Feb 25, 2016
by
Eike Ziller
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/4.0'
Change-Id: Ieead754209dd535687870469a49c2371ecfa00de
parents
c3a1355c
40e7e2cc
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
17 additions
and
4 deletions
+17
-4
src/libs/utils/runextensions.h
src/libs/utils/runextensions.h
+12
-1
src/plugins/qmldesigner/components/componentcore/addsignalhandlerdialog.h
...esigner/components/componentcore/addsignalhandlerdialog.h
+3
-3
src/tools/valgrindfake/valgrindfake.qbs
src/tools/valgrindfake/valgrindfake.qbs
+1
-0
tests/auto/extensionsystem/plugin.qbs
tests/auto/extensionsystem/plugin.qbs
+1
-0
No files found.
src/libs/utils/runextensions.h
View file @
29fadd61
...
...
@@ -143,7 +143,7 @@ struct resultTypeHasCallOperator<Function, false>
template
<
typename
Callable
>
struct
resultTypeHasCallOperator
<
Callable
,
true
>
:
public
resultTypeTakesArguments
<
decltype
(
&
Callable
::
operator
()),
1
,
(
functionTraits
<
decltype
(
&
Callable
::
operator
())
>::
arity
>
1
)
>
:
public
resultTypeTakesArguments
<
Callable
,
0
,
(
functionTraits
<
Callable
>::
arity
>
0
)
>
{
};
...
...
@@ -168,6 +168,17 @@ struct resultType<Function &&> : public resultType<Function>
{
};
// work around bug in MSVC 2015 where a reference_wrapper has a call operator even if the wrapped
// object doesn't
template
<
typename
Function
>
struct
resultType
<
std
::
reference_wrapper
<
Function
>>
:
public
resultType
<
Function
>
{
};
template
<
typename
Function
>
struct
resultType
<
std
::
reference_wrapper
<
const
Function
>>
:
public
resultType
<
Function
>
{
};
/*
Callable object that wraps a member function pointer with the object it
will be called on.
...
...
src/plugins/qmldesigner/components/componentcore/addsignalhandlerdialog.h
View file @
29fadd61
...
...
@@ -28,9 +28,9 @@
#include <QDialog>
#include <QStringList>
namespace
Ui
{
class
AddSignalHandlerDialog
;
}
QT_BEGIN_NAMESPACE
namespace
Ui
{
class
AddSignalHandlerDialog
;
}
QT_END_NAMESPACE
class
AddSignalHandlerDialog
:
public
QDialog
{
...
...
src/tools/valgrindfake/valgrindfake.qbs
View file @
29fadd61
...
...
@@ -5,6 +5,7 @@ CppApplication {
consoleApplication: true
destinationDirectory: project.ide_bin_path
Depends { name: "Qt"; submodules: ["network", "xml"]; }
cpp.cxxLanguageVersion: "c++11"
files: [
"main.cpp",
"outputgenerator.h", "outputgenerator.cpp"
...
...
tests/auto/extensionsystem/plugin.qbs
View file @
29fadd61
...
...
@@ -15,5 +15,6 @@ DynamicLibrary {
project.buildDirectory + "/" + project.libDirName + "/qtcreator",
project.buildDirectory + "/" + project.libDirName + "/qtcreator/plugins"
].concat(additionalRPaths)
cpp.cxxLanguageVersion: "c++11"
property pathList additionalRPaths: []
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment