summaryrefslogtreecommitdiff
path: root/svx/source
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2021-01-26 15:29:20 +0000
committerCaolán McNamara <caolanm@redhat.com>2021-01-26 18:33:09 +0100
commit0bbb834a2d21597697333ee88573b2b8e5d43664 (patch)
treeaf47696513aa7f568296dcfe69ec1b203ea60fb0 /svx/source
parent14b155fdfa0cd2a15e61c6ad040518902625d0d3 (diff)
fix gtk warning about missing 'weight' property
Change-Id: Ifada66e27955c23eefb41852204fd99f6711a7bf Reviewed-on: https://gerrit.libreoffice.org/c/core/+/109962 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'svx/source')
-rw-r--r--svx/source/devtools/DevelopmentToolDockingWindow.cxx3
1 files changed, 3 insertions, 0 deletions
diff --git a/svx/source/devtools/DevelopmentToolDockingWindow.cxx b/svx/source/devtools/DevelopmentToolDockingWindow.cxx
index c09bc4035c6e..65e4d140cf0e 100644
--- a/svx/source/devtools/DevelopmentToolDockingWindow.cxx
+++ b/svx/source/devtools/DevelopmentToolDockingWindow.cxx
@@ -177,6 +177,7 @@ void DevelopmentToolDockingWindow::introspect(uno::Reference<uno::XInterface> co
{
mpClassListBox->insert(pParent.get(), -1, &aServiceName, nullptr, nullptr, nullptr, false,
pResult.get());
+ mpClassListBox->set_text_emphasis(*pResult, false, 0);
}
uno::Reference<beans::XIntrospection> xIntrospection;
@@ -196,6 +197,7 @@ void DevelopmentToolDockingWindow::introspect(uno::Reference<uno::XInterface> co
{
mpClassListBox->insert(pParent.get(), -1, &xProperty.Name, nullptr, nullptr, nullptr, false,
pResult.get());
+ mpClassListBox->set_text_emphasis(*pResult, false, 0);
}
OUString aMethodsString("Methods");
@@ -209,6 +211,7 @@ void DevelopmentToolDockingWindow::introspect(uno::Reference<uno::XInterface> co
OUString aMethodName = xMethod->getName();
mpClassListBox->insert(pParent.get(), -1, &aMethodName, nullptr, nullptr, nullptr, false,
pResult.get());
+ mpClassListBox->set_text_emphasis(*pResult, false, 0);
}
mpClassListBox->thaw();