summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-12-16 13:31:48 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-12-16 13:31:48 +0100
commit1990c75175118c4b1ff0f020c13213627b6adcb0 (patch)
tree674408c85c188940ddcfe8a7cd68205b22fb3401
parent8502d64878164144bb7f87d84117e260848cf9e3 (diff)
Daft += "\0" triggers assert
...try GetProcessServiceManager().createInstance("stardiv.UnoControls.ProgressMonitor").addText("foo", "bar", false) in Basic... Change-Id: I30318c3e8e671a97b6a3fe2dd9ec03add21794ab
-rw-r--r--UnoControls/source/controls/progressmonitor.cxx4
1 files changed, 0 insertions, 4 deletions
diff --git a/UnoControls/source/controls/progressmonitor.cxx b/UnoControls/source/controls/progressmonitor.cxx
index 035d5ed83cf1..df93a695c2d2 100644
--- a/UnoControls/source/controls/progressmonitor.cxx
+++ b/UnoControls/source/controls/progressmonitor.cxx
@@ -750,7 +750,6 @@ void ProgressMonitor::impl_rebuildFixedText ()
aCollectString += pSearchItem->sTopic;
aCollectString += "\n";
}
- aCollectString += "\0"; // It's better :-)
m_xTopic_Top->setText ( aCollectString );
}
@@ -768,7 +767,6 @@ void ProgressMonitor::impl_rebuildFixedText ()
aCollectString += pSearchItem->sText;
aCollectString += "\n";
}
- aCollectString += "\0"; // It's better :-)
m_xText_Top->setText ( aCollectString );
}
@@ -788,7 +786,6 @@ void ProgressMonitor::impl_rebuildFixedText ()
aCollectString += pSearchItem->sTopic;
aCollectString += "\n";
}
- aCollectString += "\0"; // It's better :-)
m_xTopic_Bottom->setText ( aCollectString );
}
@@ -806,7 +803,6 @@ void ProgressMonitor::impl_rebuildFixedText ()
aCollectString += pSearchItem->sText;
aCollectString += "\n";
}
- aCollectString += "\0"; // It's better :-)
m_xText_Bottom->setText ( aCollectString );
}