aboutsummaryrefslogtreecommitdiffstats
path: root/src/libs/tracing/timelinenotesrenderpass.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/libs/tracing/timelinenotesrenderpass.cpp')
-rw-r--r--src/libs/tracing/timelinenotesrenderpass.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libs/tracing/timelinenotesrenderpass.cpp b/src/libs/tracing/timelinenotesrenderpass.cpp
index e9bd80a0e9..bfc3273eed 100644
--- a/src/libs/tracing/timelinenotesrenderpass.cpp
+++ b/src/libs/tracing/timelinenotesrenderpass.cpp
@@ -117,7 +117,7 @@ TimelineRenderPass::State *TimelineNotesRenderPass::update(const TimelineAbstrac
return oldState;
TimelineNotesRenderPassState *state;
- if (oldState == 0) {
+ if (oldState == nullptr) {
state = new TimelineNotesRenderPassState(model->expandedRowCount());
} else {
if (!stateChanged && !renderer->notesDirty())
@@ -253,7 +253,7 @@ void NotesMaterialShader::updateState(const RenderState &state, QSGMaterial *, Q
char const *const *NotesMaterialShader::attributeNames() const
{
- static const char *const attr[] = {"vertexCoord", "distanceFromTop", 0};
+ static const char *const attr[] = {"vertexCoord", "distanceFromTop", nullptr};
return attr;
}