mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-29 02:40:05 +00:00
Removed a few more uses of String::empty.
This commit is contained in:
parent
2623f4d1e1
commit
2edec00b55
46 changed files with 91 additions and 91 deletions
|
|
@ -951,7 +951,7 @@ String BigInteger::toString (const int base, const int minimumNumCharacters) con
|
|||
else
|
||||
{
|
||||
jassertfalse; // can't do the specified base!
|
||||
return String::empty;
|
||||
return String();
|
||||
}
|
||||
|
||||
s = s.paddedLeft ('0', minimumNumCharacters);
|
||||
|
|
|
|||
|
|
@ -53,7 +53,7 @@ public:
|
|||
virtual String getName() const
|
||||
{
|
||||
jassertfalse; // You shouldn't call this for an expression that's not actually a function!
|
||||
return String::empty;
|
||||
return String();
|
||||
}
|
||||
|
||||
virtual void renameSymbol (const Symbol& oldSymbol, const String& newName, const Scope& scope, int recursionDepth)
|
||||
|
|
@ -1181,5 +1181,5 @@ void Expression::Scope::visitRelativeScope (const String& scopeName, Visitor&) c
|
|||
|
||||
String Expression::Scope::getScopeUID() const
|
||||
{
|
||||
return String::empty;
|
||||
return String();
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue