summaryrefslogtreecommitdiff
path: root/include/vcl/help.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/vcl/help.hxx')
-rw-r--r--include/vcl/help.hxx12
1 files changed, 5 insertions, 7 deletions
diff --git a/include/vcl/help.hxx b/include/vcl/help.hxx
index 2c0ec962b459..055208b19842 100644
--- a/include/vcl/help.hxx
+++ b/include/vcl/help.hxx
@@ -41,18 +41,16 @@ enum class QuickHelpFlags
Bottom = 0x0020,
NoAutoPos = Left | Center | Right | Top | VCenter | Bottom,
CtrlText = 0x0040,
-/// force the existent tip window to be re-positioned, even if the previous incarnation has the same text. Applies to ShowBallon and ShowQuickHelp.
- ForceReposition = 0x0080,
/// no delay when opening the quick help. Applies to ShowBallon and ShowQuickHelp
- NoDelay = 0x0100,
+ NoDelay = 0x0080,
/// force balloon-style in ShowTip
- TipStyleBalloon = 0x0200,
- NoEvadePointer = 0x4000,
- BiDiRtl = 0x8000,
+ TipStyleBalloon = 0x0100,
+ NoEvadePointer = 0x0200,
+ BiDiRtl = 0x0400,
};
namespace o3tl
{
- template<> struct typed_flags<QuickHelpFlags> : is_typed_flags<QuickHelpFlags, 0xc3ff> {};
+ template<> struct typed_flags<QuickHelpFlags> : is_typed_flags<QuickHelpFlags, 0x7ff> {};
}
#define OOO_HELP_INDEX ".help:index"
0vcl,sd,sw: PDF/UA export: add Alt text to SdrMediaObj media shapesMichael Stahl 2022-12-04cid#708627 Uninitialized scalar fieldCaolán McNamara 2022-11-28tdf#77650 Add option to place comments in margin (PDF Export)Samuel Mehrbrodt 2022-10-25tdf#148934 PDF/UA export: add Contents entry to Link annotationsMichael Stahl 2021-04-26drop mask from BitmapExNoel Grandin 2021-04-02vcl: remove GetBitCount and GetColorCount from Bitmap{Ex}Tomaž Vajngerl 2021-01-14cid#1471674 help coverity see that "Division or modulo by zero" is bogusCaolán McNamara 2020-05-26Fix loplugin:simplifypointertobool for libstdc++ std::shared_ptrStephan Bergmann 2020-03-16Revert "loplugin:constfields in vcl"Noel Grandin 2020-01-28New loplugin:unsignedcompareStephan Bergmann 2019-11-22Extend loplugin:external to warn about classesStephan Bergmann 2019-10-11Add 'SinglePageSheets' option to the PDF export dialogMuhammet Kara 2019-08-22loplugin:constmethod in vclNoel Grandin 2019-07-30Fix typosAndrea Gelmini 2019-07-24tdf#42949 Fix IWYU warnings in vcl/source/[f-i]*Gabor Kelemen 2019-05-08improve tools::Rectangle->basegfx::B2?Rectangle conversionNoel Grandin