In LibreOffice C++ code, there are many cases where developers have string literals that should be used in
EasyHack Archive
enum class instead of unscoped enum – EasyHack
Since C++11 when enum class (also named scoped enum) is introduced, it is preferred to plain enum
Using C++ STL functions instead of loops – EasyHack
C++ Standard library, which resides in std:: namespace provides common classes and functions which can be
Unit conversion in LibreOffice code – EasyHack
LibreOffice handles different input and output formats, and also displays text and graphics alongside inside the GUI on
Splash screen with VCL weld – difficultyInteresting EasyHack
As a LibreOffice user, you have certainly seen the LibreOffice splash screen. It is displayed when you
Writer tables converted to plain text – difficultyInteresting EasyHack
If you copy contents from LibreOffice Writer to a plain text editor like gedit or Notepad,
Make Impress master slides copyable – difficulty interesting EasyHack
When working with LibreOffice Impress, “Slide Master” is the place where you can change the templates
Custom string literals: two EasyHacks
In the previous part of the series on C/C++ strings, I described the string literal, plus how and why to
Integer data types improvement – EasyHack
Many different data types are used in LibreOffice code. During the long history of the LibreOffice, and before that
UNO API error reporting improvement – EasyHack
In this blog post, I discuss the EayHack for improving UNO API error reporting. EasyHacks are good if