summaryrefslogtreecommitdiff
path: root/core
authordwmw2 <dwmw2>2002-04-02 14:02:44 (UTC)
committer dwmw2 <dwmw2>2002-04-02 14:02:44 (UTC)
commit108f15e0121aca57d5828cf0f22285989d920bd7 (patch) (side-by-side diff)
tree253c9bca48bb864b02428c72d4baf2d085579d9c /core
parent623ce8225b7f75755146601e2c8d7f1e7e9a65d0 (diff)
downloadopie-108f15e0121aca57d5828cf0f22285989d920bd7.zip
opie-108f15e0121aca57d5828cf0f22285989d920bd7.tar.gz
opie-108f15e0121aca57d5828cf0f22285989d920bd7.tar.bz2
Remove #include <stdiostream.h>. It wasn't used, and isn't present in my gcc3
Diffstat (limited to 'core') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/datebook/dateentryimpl.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/core/pim/datebook/dateentryimpl.cpp b/core/pim/datebook/dateentryimpl.cpp
index e563db0..403378e 100644
--- a/core/pim/datebook/dateentryimpl.cpp
+++ b/core/pim/datebook/dateentryimpl.cpp
@@ -22,50 +22,48 @@
#include "repeatentry.h"
#include <qpe/qpeapplication.h>
#include <qpe/categoryselect.h>
#include <qpe/datebookmonth.h>
#include <qpe/global.h>
#include <qpe/timeconversion.h>
#include <qpe/timestring.h>
#include <qpe/tzselect.h>
#include <qcheckbox.h>
#include <qcombobox.h>
#include <qlayout.h>
#include <qlineedit.h>
#include <qmultilineedit.h>
#include <qpopupmenu.h>
#include <qscrollview.h>
#include <qspinbox.h>
#include <qtoolbutton.h>
#include "timepicker.h"
#include <stdlib.h>
-#include <stdiostream.h>
-
/*
* Constructs a DateEntry which is a child of 'parent', with the
* name 'name' and widget flags set to 'f'
*
* The dialog will by default be modeless, unless you set 'modal' to
* TRUE to construct a modal dialog.
*/
DateEntry::DateEntry( bool startOnMonday, const QDateTime &start,
const QDateTime &end, bool whichClock, QWidget* parent,
const char* name )
: DateEntryBase( parent, name ),
ampm( whichClock ),
startWeekOnMonday( startOnMonday )
{
init();
setDates(start,end);
setFocusProxy(comboDescription);
}
static void addOrPick( QComboBox* combo, const QString& t )
{
// Pick an item if one excists
for (int i=0; i<combo->count(); i++) {