mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-26 23:28:14 +03:00
Added Q_FUNC_INFO at several places
This commit is contained in:
parent
accb036507
commit
fa390299f9
3 changed files with 3 additions and 3 deletions
|
@ -167,7 +167,7 @@ Application::~Application()
|
|||
|
||||
void Application::slotShowShareDialog(const QString &path)
|
||||
{
|
||||
qDebug() << "Opening share dialog";
|
||||
qDebug() << Q_FUNC_INFO << "Opening share dialog";
|
||||
ShareDialog *w = new ShareDialog;
|
||||
w->setPath(path);
|
||||
w->show();
|
||||
|
|
|
@ -217,7 +217,7 @@ void ShareDialog::slotCheckBoxShareLinkClicked()
|
|||
|
||||
void ShareDialog::slotCreateShareFetched(const QString &reply)
|
||||
{
|
||||
qDebug() << reply;
|
||||
qDebug() << Q_FUNC_INFO << reply;
|
||||
_ui->labelShareSpinner->hide();
|
||||
bool success;
|
||||
QVariantMap json = QtJson::parse(reply, success).toMap();
|
||||
|
|
|
@ -405,7 +405,7 @@ void SocketApi::command_RETRIEVE_FILE_STATUS(const QString& argument, SocketType
|
|||
void SocketApi::command_SHARE(const QString& argument, SocketType* socket)
|
||||
{
|
||||
if (!socket) {
|
||||
qDebug() << "No valid socket object.";
|
||||
qDebug() << Q_FUNC_INFO << "No valid socket object.";
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue