mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 20:27:34 +00:00
FileManager: Open PNG files with QuickShow when activated.
This commit is contained in:
parent
d563dc0565
commit
5ca62f356b
3 changed files with 23 additions and 0 deletions
|
@ -74,6 +74,8 @@ public:
|
|||
const char* characters() const { return m_impl ? m_impl->characters() : nullptr; }
|
||||
char operator[](ssize_t i) const { ASSERT(m_impl); return (*m_impl)[i]; }
|
||||
|
||||
bool ends_with(const String&) const;
|
||||
|
||||
bool operator==(const String&) const;
|
||||
bool operator!=(const String& other) const { return !(*this == other); }
|
||||
bool operator<(const String&) const;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue