mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Formatting: Remove double-dots from comments and other strings
This commit is contained in:
parent
82dc6d1c7e
commit
83e5264c86
209 changed files with 508 additions and 509 deletions
|
|
@ -192,7 +192,7 @@ void LookAndFeel::setUsingNativeAlertWindows (bool shouldUseNativeAlerts)
|
|||
bool LookAndFeel::isUsingNativeAlertWindows()
|
||||
{
|
||||
#if JUCE_LINUX || JUCE_BSD
|
||||
return false; // not available currently..
|
||||
return false; // not available currently
|
||||
#else
|
||||
return useNativeAlertWindows;
|
||||
#endif
|
||||
|
|
|
|||
|
|
@ -38,7 +38,7 @@ namespace juce
|
|||
//==============================================================================
|
||||
LookAndFeel_V2::LookAndFeel_V2()
|
||||
{
|
||||
// initialise the standard set of colours..
|
||||
// initialise the standard set of colours
|
||||
const uint32 textButtonColour = 0xffbbbbff;
|
||||
const uint32 textHighlightColour = 0x401111ee;
|
||||
const uint32 standardOutlineColour = 0xb2808080;
|
||||
|
|
@ -557,7 +557,7 @@ void LookAndFeel_V2::drawProgressBar (Graphics& g, ProgressBar& progressBar,
|
|||
}
|
||||
else
|
||||
{
|
||||
// spinning bar..
|
||||
// spinning bar
|
||||
g.setColour (foreground);
|
||||
|
||||
const int stripeWidth = height * 2;
|
||||
|
|
@ -1762,7 +1762,7 @@ void LookAndFeel_V2::drawTooltip (Graphics& g, const String& text, int width, in
|
|||
{
|
||||
g.fillAll (findColour (TooltipWindow::backgroundColourId));
|
||||
|
||||
#if ! JUCE_MAC // The mac windows already have a non-optional 1 pix outline, so don't double it here..
|
||||
#if ! JUCE_MAC // The mac windows already have a non-optional 1 pix outline, so don't double it here.
|
||||
g.setColour (findColour (TooltipWindow::outlineColourId));
|
||||
g.drawRect (0, 0, width, height, 1);
|
||||
#endif
|
||||
|
|
|
|||
|
|
@ -536,7 +536,7 @@ void LookAndFeel_V4::drawLinearProgressBar (Graphics& g, const ProgressBar& prog
|
|||
}
|
||||
else
|
||||
{
|
||||
// spinning bar..
|
||||
// spinning bar
|
||||
g.setColour (background);
|
||||
|
||||
auto stripeWidth = height * 2;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue