Kaydet (Commit) 0140d931 authored tarafından Jochen Nitschke's avatar Jochen Nitschke

loplugin:defaultparams

Change-Id: I9e6b81855e421186af92e53c71f5ba9bd8005319
Reviewed-on: https://gerrit.libreoffice.org/28433Reviewed-by: 's avatarJochen Nitschke <j.nitschke+logerrit@ok.de>
Tested-by: 's avatarJochen Nitschke <j.nitschke+logerrit@ok.de>
üst 45e01be1
......@@ -206,7 +206,7 @@ ScreenshotAnnotationDlg_Impl::ScreenshotAnnotationDlg_Impl(
if (mpText)
{
mpText->SetText("The quick brown fox jumps over the lazy dog :)");
mpText->SetReadOnly(true);
mpText->SetReadOnly();
}
// set click handler for save button
......@@ -406,8 +406,7 @@ void ScreenshotAnnotationDlg_Impl::PaintControlDataEntry(
// no transparency, draw without
mpVirtualBufferDevice->DrawPolyLine(
aPolygon,
fLineWidth,
basegfx::B2DLineJoin::Round);
fLineWidth);
}
}
}
......
......@@ -230,8 +230,7 @@ void VclContainer::Command(const CommandEvent& rCEvt)
aMenu->InsertItem(
nLocalID,
pChild->GetText(),
MenuItemBits::NONE);
pChild->GetText());
aMenu->SetHelpText(
nLocalID,
pChild->GetHelpText());
......@@ -254,8 +253,7 @@ void VclContainer::Command(const CommandEvent& rCEvt)
aMenu->InsertItem(
nLocalID,
"Screenshot",
MenuItemBits::NONE);
"Screenshot");
aMenu->SetHelpText(
nLocalID,
"Go into interactive screenshot annotation mode");
......@@ -263,8 +261,7 @@ void VclContainer::Command(const CommandEvent& rCEvt)
nLocalID,
"InteractiveScreenshotMode");
aMenu->EnableItem(
nLocalID,
true);
nLocalID);
nScreenshotButtonID = nLocalID;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment