mirror of
https://github.com/sqlitebrowser/sqlitebrowser.git
synced 2026-01-20 19:11:39 -06:00
Added comments
This commit is contained in:
@@ -1,9 +1,17 @@
|
||||
//---------------------------------------------------------------
|
||||
// ExtendedMainForm: This class extends the mainForm class
|
||||
// to support drag and drop of sql file.
|
||||
//
|
||||
// Developer: Arvind Kumar Gupta
|
||||
// arvind.your@gmail.com
|
||||
//---------------------------------------------------------------
|
||||
|
||||
#include "extendedmainform.h"
|
||||
#include <QUrl>
|
||||
|
||||
ExtendedMainForm::ExtendedMainForm(QWidget* parent, const char* name, Qt::WindowFlags fl) : mainForm( parent, name, fl )
|
||||
{
|
||||
setAcceptDrops(true);
|
||||
setAcceptDrops(true); // Enable the drop feature on this form
|
||||
}
|
||||
|
||||
ExtendedMainForm::~ExtendedMainForm(void)
|
||||
|
||||
@@ -1,3 +1,11 @@
|
||||
//---------------------------------------------------------------
|
||||
// ExtendedMainForm: This class extends the mainForm class
|
||||
// to support drag and drop of sql file.
|
||||
//
|
||||
// Developer: Arvind Kumar Gupta
|
||||
// arvind.your@gmail.com
|
||||
//---------------------------------------------------------------
|
||||
|
||||
#ifndef __EXTENDEDMAINFORM__
|
||||
#define __EXTENDEDMAINFORM__
|
||||
|
||||
|
||||
Reference in New Issue
Block a user