mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-05-08 17:15:16 -04:00
* Enabled Minimize/Maximize Button for File Transfer details dialog.
* Clean up Buttons on ChatWidget, for Fonts use now Font Button. git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@7717 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
1fff74656e
commit
981df0c7e0
4 changed files with 288 additions and 384 deletions
|
@ -31,8 +31,8 @@
|
|||
#include "gui/RetroShareLink.h"
|
||||
|
||||
/** Default constructor */
|
||||
DetailsDialog::DetailsDialog(QWidget *parent, Qt::WindowFlags flags)
|
||||
: QDialog(parent, flags)
|
||||
DetailsDialog::DetailsDialog(QWidget *parent)
|
||||
: QDialog(parent, Qt::WindowTitleHint | Qt::WindowMinMaxButtonsHint | Qt::WindowCloseButtonHint)
|
||||
{
|
||||
/* Invoke Qt Designer generated QObject setup routine */
|
||||
ui.setupUi(this);
|
||||
|
|
|
@ -34,7 +34,7 @@ class DetailsDialog : public QDialog
|
|||
|
||||
public:
|
||||
/** Default constructor */
|
||||
DetailsDialog(QWidget *parent = 0, Qt::WindowFlags flags = 0);
|
||||
DetailsDialog(QWidget *parent = 0);
|
||||
/** Default destructor */
|
||||
~DetailsDialog() {}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue