author | drw <drw> | 2005-05-23 23:41:35 (UTC) |
---|---|---|
committer | drw <drw> | 2005-05-23 23:41:35 (UTC) |
commit | 4d0e85830d39ef28f5ae8d3f9daa2cdf5616b2e2 (patch) (side-by-side diff) | |
tree | 5b1561f5c64f674b25daa7eb16f8caec79e72d13 /noncore | |
parent | 3e2acb4665ddcdb24e0749e3ebfc589313be0065 (diff) | |
download | opie-4d0e85830d39ef28f5ae8d3f9daa2cdf5616b2e2.zip opie-4d0e85830d39ef28f5ae8d3f9daa2cdf5616b2e2.tar.gz opie-4d0e85830d39ef28f5ae8d3f9daa2cdf5616b2e2.tar.bz2 |
Remove unnecessary include
-rw-r--r-- | noncore/tools/calculator/calculatorimpl.cpp | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/noncore/tools/calculator/calculatorimpl.cpp b/noncore/tools/calculator/calculatorimpl.cpp index 05cb9b5..21c1e2e 100644 --- a/noncore/tools/calculator/calculatorimpl.cpp +++ b/noncore/tools/calculator/calculatorimpl.cpp @@ -28,7 +28,6 @@ /* OPIE */ #include <opie2/odebug.h> -#include <qpe/resource.h> #include <qpe/qmath.h> #include <qpe/qpeapplication.h> using namespace Opie::Core; @@ -109,10 +108,6 @@ CalculatorImpl::CalculatorImpl( QWidget * parent, const char * name, WFlags f ) : Calculator( parent, name, f ) { -// xtopowerofy = Resource::loadPixmap("xtopowerofy"); -// ythrootofx = Resource::loadPixmap("ythrootofx"); -// oneoverx = Resource::loadPixmap("oneoverx"); - memMark = new QLabel( "m", LCD ); memMark->setFont( QFont( "helvetica", 12, QFont::Bold, TRUE ) ); memMark->resize( 12, 12 ); @@ -133,13 +128,13 @@ CalculatorImpl::CalculatorImpl( QWidget * parent, const char * name, QObject::tr("Temperatures"); QObject::tr("Volume"); QObject::tr("acres"); - QObject::tr("°C"); + QObject::tr("C"); QObject::tr("carats"); QObject::tr("cm"); QObject::tr("cu cm"); QObject::tr("cu ft"); QObject::tr("cu in"); - QObject::tr("°F"); + QObject::tr("F"); QObject::tr("fl oz (US)"); QObject::tr("ft"); QObject::tr("g"); |