summaryrefslogtreecommitdiff
authorzecke <zecke>2005-02-06 11:18:06 (UTC)
committer zecke <zecke>2005-02-06 11:18:06 (UTC)
commit1b23cd056974e3c96cc1232259c113184084530e (patch) (side-by-side diff)
tree9871e02f374e6752e80a9b6c8f2ff319db7bfe1d
parentc1d8b585ac60438bfb237579da829b4110204009 (diff)
downloadopie-1b23cd056974e3c96cc1232259c113184084530e.zip
opie-1b23cd056974e3c96cc1232259c113184084530e.tar.gz
opie-1b23cd056974e3c96cc1232259c113184084530e.tar.bz2
Remove old and commented out code
Update the email address
Diffstat (more/less context) (show whitespace changes)
-rw-r--r--libopie2/opieui/fileselector/ofiledialog.cpp9
1 files changed, 1 insertions, 8 deletions
diff --git a/libopie2/opieui/fileselector/ofiledialog.cpp b/libopie2/opieui/fileselector/ofiledialog.cpp
index e01fbe5..65648ce 100644
--- a/libopie2/opieui/fileselector/ofiledialog.cpp
+++ b/libopie2/opieui/fileselector/ofiledialog.cpp
@@ -1,15 +1,15 @@
/*
               =. This file is part of the OPIE Project
-             .=l. Copyright (C) Holger Freyther <zecke@handhelds.org>
+             .=l. Copyright (C) Holger Freyther <freyther@handhelds.org>
           .>+-=
 _;:,     .>    :=|. This library is free software; you can
.> <`_,   >  .   <= redistribute it and/or modify it under
:`=1 )Y*s>-.--   : the terms of the GNU Library General Public
.="- .-=="i,     .._ License as published by the Free Software
 - .   .-<_>     .<> Foundation; either version 2 of the License,
     ._= =}       : or (at your option) any later version.
    .%`+i>       _;_.
    .i_,=:_.      -<s. This library is distributed in the hope that
     +  .  -:.       = it will be useful, but WITHOUT ANY WARRANTY;
    : ..    .:,     . . . without even the implied warranty of
    =_        +     =;=|` MERCHANTABILITY or FITNESS FOR A
@@ -106,29 +106,24 @@ OFileDialog::OFileDialog(const QString &caption,
mimetypes );
lay->addWidget( file );
//lay->addWidget( file );
//showFullScreen();
setCaption( caption.isEmpty() ? tr("FileDialog") : caption );
connect(file, SIGNAL(fileSelected(const QString&) ),
this, SLOT(slotFileSelected(const QString&) ) );
connect(file, SIGNAL(ok() ),
this, SLOT(slotSelectorOk()) ) ;
connect(file, SIGNAL(dirSelected(const QString&) ), this, SLOT(slotDirSelected(const QString&) ) );
-
-#if 0
- connect(file, SIGNAL(dirSelected(const QString&) ),
- this, SLOT(slotDirSelected(const QString&) ) );
-#endif
}
/**
* @returns the mimetype of the selected
* currently it return QString::null
*/
QString OFileDialog::mimetype()const
{
return QString::null;
}
/**
* @return the fileName
@@ -242,15 +237,13 @@ void OFileDialog::slotFileSelected(const QString & )
{
accept();
}
void OFileDialog::slotSelectorOk( )
{
accept();
}
void OFileDialog::slotDirSelected(const QString &dir )
{
setCaption( dir );
- // if mode
- //accept();
}