mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +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
|
|
@ -265,7 +265,7 @@ void ComponentLayout::copySelectedToClipboard()
|
|||
}
|
||||
}
|
||||
|
||||
SystemClipboard::copyTextToClipboard (clip.createDocument (String::empty, false, false));
|
||||
SystemClipboard::copyTextToClipboard (clip.createDocument ("", false, false));
|
||||
}
|
||||
|
||||
void ComponentLayout::paste()
|
||||
|
|
|
|||
|
|
@ -441,7 +441,7 @@ void JucerDocument::fillInGeneratedCode (GeneratedCode& code) const
|
|||
|
||||
ScopedPointer<XmlElement> e (createXml());
|
||||
jassert (e != nullptr);
|
||||
code.jucerMetadata = e->createDocument (String::empty, false, false);
|
||||
code.jucerMetadata = e->createDocument ("", false, false);
|
||||
|
||||
resources.fillInGeneratedCode (code);
|
||||
|
||||
|
|
|
|||
|
|
@ -304,7 +304,7 @@ void PaintRoutine::copySelectedToClipboard()
|
|||
}
|
||||
}
|
||||
|
||||
SystemClipboard::copyTextToClipboard (clip.createDocument (String::empty, false, false));
|
||||
SystemClipboard::copyTextToClipboard (clip.createDocument ("", false, false));
|
||||
}
|
||||
|
||||
void PaintRoutine::paste()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue