aboutsummaryrefslogtreecommitdiff
path: root/lumina-fm/MainUI.h
diff options
context:
space:
mode:
authorq5sys <jt@obs-sec.com>2016-03-31 13:51:30 -0400
committerq5sys <jt@obs-sec.com>2016-03-31 13:51:30 -0400
commit4d5f0158e686e8aba5b2a66253f27d1210c955c9 (patch)
treeef833b95fcb1c07c8183240e26b9ee20ae90bcf5 /lumina-fm/MainUI.h
parentMerge pull request #213 from q5sys/patch-1 (diff)
downloadlumina-4d5f0158e686e8aba5b2a66253f27d1210c955c9.tar.gz
lumina-4d5f0158e686e8aba5b2a66253f27d1210c955c9.tar.bz2
lumina-4d5f0158e686e8aba5b2a66253f27d1210c955c9.zip
removed: QMainWindow::closeEvent(ev);
if its not needed, there's no reason for it to be there.
Diffstat (limited to 'lumina-fm/MainUI.h')
-rw-r--r--lumina-fm/MainUI.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/lumina-fm/MainUI.h b/lumina-fm/MainUI.h
index 2a711e8f..c8cb84d8 100644
--- a/lumina-fm/MainUI.h
+++ b/lumina-fm/MainUI.h
@@ -164,7 +164,6 @@ signals:
protected:
void closeEvent(QCloseEvent *ev){
emit ClientClosed(this);
- QMainWindow::closeEvent(ev);
}
void resizeEvent(QResizeEvent *ev){
//Save the new size to the settings file for later
bgstack15