mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-29 03:38:05 -06:00
Allow to set placeholder for FileSystemPathEdit
This commit is contained in:
@@ -247,6 +247,18 @@ void FileSystemPathEdit::setFileNameFilter(const QString &val)
|
||||
#endif
|
||||
}
|
||||
|
||||
QString FileSystemPathEdit::placeholder() const
|
||||
{
|
||||
Q_D(const FileSystemPathEdit);
|
||||
return d->m_editor->placeholder();
|
||||
}
|
||||
|
||||
void FileSystemPathEdit::setPlaceholder(const QString &val)
|
||||
{
|
||||
Q_D(FileSystemPathEdit);
|
||||
d->m_editor->setPlaceholder(val);
|
||||
}
|
||||
|
||||
bool FileSystemPathEdit::briefBrowseButtonCaption() const
|
||||
{
|
||||
Q_D(const FileSystemPathEdit);
|
||||
|
||||
Reference in New Issue
Block a user