From 0c3303957aa56abb12c0cc4db1493eea5a995f28 Mon Sep 17 00:00:00 2001 From: zecke Date: Sat, 27 Apr 2002 18:10:51 +0000 Subject: Update TODO Update todoevent.cpp I almost forgot about this \n ->
inside the RichText remove oconfig cause it was bogus. We can achieve the same with Config(path, Config::File ); --- (limited to 'libopie') diff --git a/libopie/TODO b/libopie/TODO index d49910c..98baf72 100644 --- a/libopie/TODO +++ b/libopie/TODO @@ -2,18 +2,11 @@ - tododb - set Alarms - - multiple categories - - Attendees - OFileSelector - - fix the weird view change bug delete m_pseudoLayout crash - DocLnk when not in Document Mode ( and vice versa ) - MultipleDocuments - - TreeView have a own OFileSelectorItem for this - - IconView add a QIconView to the widgetstack - Move OFileSelectorItem to it's own files - - add functions to access the member variables - - debug - new Dirs created inside the listview - Clickable labels? diff --git a/libopie/libopie.pro b/libopie/libopie.pro index b19426e..b2ecd07 100644 --- a/libopie/libopie.pro +++ b/libopie/libopie.pro @@ -1,7 +1,7 @@ TEMPLATE = lib CONFIG += qte warn_on release -HEADERS = ofontmenu.h ofileselector.h ofiledialog.h tododb.h todoevent.h todoresource.h todovcalresource.h xmltree.h oconfig.h colordialog.h colorpopupmenu.h -SOURCES = ofontmenu.cc ofileselector.cc ofiledialog.cc xmltree.cc tododb.cpp todoevent.cpp todovcalresource.cpp oconfig.cpp colordialog.cpp colorpopupmenu.cpp +HEADERS = ofontmenu.h ofileselector.h ofiledialog.h tododb.h todoevent.h todoresource.h todovcalresource.h xmltree.h colordialog.h colorpopupmenu.h +SOURCES = ofontmenu.cc ofileselector.cc ofiledialog.cc xmltree.cc tododb.cpp todoevent.cpp todovcalresource.cpp colordialog.cpp colorpopupmenu.cpp TARGET = opie INCLUDEPATH += $(OPIEDIR)/include DESTDIR = $(QTDIR)/lib$(PROJMAK) diff --git a/libopie/oconfig.cpp b/libopie/oconfig.cpp deleted file mode 100644 index d051d54..0000000 --- a/libopie/oconfig.cpp +++ b/dev/null @@ -1,45 +0,0 @@ -/* -               =. This file is part of the OPIE Project -             .=l. Copyright (c) 2002 Holger Freyther -           .>+-= - _;:,     .>    :=|. 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_,=:_.      -`: PARTICULAR PURPOSE. See the GNU -..}^=.=       =       ; Library General Public License for more -++=   -.     .`     .: details. - :     =  ...= . :.=- - -.   .:....=;==+<; You should have received a copy of the GNU -  -_. . .   )=.  = Library General Public License along with -    --        :-=` this library; see the file COPYING.LIB. - If not, write to the Free Software Foundation, - Inc., 59 Temple Place - Suite 330, - Boston, MA 02111-1307, USA. - -*/ - -#include - -OConfig::OConfig(const QString &file) - : Config("tmpopie" ) -{ - filename = file; - read(); -} -OConfig::~OConfig() -{ - // Config will write the file for us -} -QString OConfig::fileName() const -{ - return filename; -} - diff --git a/libopie/oconfig.h b/libopie/oconfig.h deleted file mode 100644 index f6227d1..0000000 --- a/libopie/oconfig.h +++ b/dev/null @@ -1,48 +0,0 @@ -/* -               =. This file is part of the OPIE Project -             .=l. Copyright (c) 2002 Holger 'zecke' Freyther -           .>+-= - _;:,     .>    :=|. 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_,=:_.      -`: PARTICULAR PURPOSE. See the GNU -..}^=.=       =       ; Library General Public License for more -++=   -.     .`     .: details. - :     =  ...= . :.=- - -.   .:....=;==+<; You should have received a copy of the GNU -  -_. . .   )=.  = Library General Public License along with -    --        :-=` this library; see the file COPYING.LIB. - If not, write to the Free Software Foundation, - Inc., 59 Temple Place - Suite 330, - Boston, MA 02111-1307, USA. - -*/ - - -#include - -#ifndef opieconfig_h -#define opieconfig_h - -/** It supports all Config items + it lets you decide - * which file to use. - */ - -class OConfig : public Config { - public: - OConfig( const QString &filename ); - ~OConfig(); - QString fileName() const; - void read( ) { Config::read(); }; -}; - -#endif - diff --git a/libopie/todoevent.cpp b/libopie/todoevent.cpp index 5537b77..b820150 100644 --- a/libopie/todoevent.cpp +++ b/libopie/todoevent.cpp @@ -131,7 +131,7 @@ QString ToDoEvent::richText() const // Description of the todo if ( !description().isEmpty() ){ text += "" + QObject::tr( "Description:" ) + "
"; - text += Qtopia::escapeString(description() ) + "
"; + text += Qtopia::escapeString(description() ).replace(QRegExp( "[\n]"), "
" ) + "
"; } text += "" + QObject::tr( "Priority:") +" " + QString::number( priority() ) + "
"; -- cgit v0.9.0.2