Age | Commit message (Collapse) | Author | Files | Lines |
---|---|---|---|---|
2002-12-01 | Added a fix for programs that have been compiled with old toolchains and | sandman | 1 | -0/+6 |
are used together with shared libs produced by newer toolchains .. they might not have the __gmon_start__ symbol defined (e.g. neocal or hancom on a glibc 2.3.1 iPAQ with the latest libjpeg62) | ||||
2002-12-01 | whoops | llornkcor | 1 | -1/+1 |
2002-11-30 | Fixed a lot of usability stuff .. Some minor bugs were fixed, too .. | eilers | 7 | -47/+68 |
2002-11-30 | More implementation | zecke | 2 | -0/+100 |
2002-11-30 | Back from hospital with new power | zecke | 13 | -215/+310 |
This versions clean up m failure on templates with Qt... in todoview Implements Recurrance( backends to not safe it yet ) OPimState and Maintainer mode in some ways and much more This one also implements the OPimMainWindow specs and has a small Memu replacement to get the toolbar in one line | ||||
2002-11-29 | no longer include config.in from libffmpeg dir | kergoth | 1 | -1/+0 |
2002-11-29 | Ensure libpreload gets built | kergoth | 1 | -0/+12 |
2002-11-29 | removed open with fileselector, cause I hate it. Fixes opening through docs ↵ | llornkcor | 2 | -26/+42 |
tab, and other annoyances | ||||
2002-11-28 | ... | eilers | 1 | -2/+7 |
2002-11-28 | Change of view caused jump to the first line of table->fixed | eilers | 1 | -3/+3 |
2002-11-27 | Now version 0.1.1 | eilers | 1 | -1/+1 |
2002-11-27 | Extremely improved table update | eilers | 5 | -70/+109 |
2002-11-27 | fix for bug #494 which is imho a flat style bug | harlekin | 2 | -4/+3 |
2002-11-27 | ability to show next days too added | harlekin | 6 | -18/+57 |
2002-11-27 | Still a lot of work | eilers | 1 | -2/+10 |
2002-11-25 | Unable to read man pages, part 2 ... qwsSetDecoration is also static | sandman | 1 | -14/+11 |
2002-11-25 | fixes the DESTDIR | sandman | 1 | -1/+1 |
2002-11-25 | Don't press save&quit before writing the log message .. here it is: | sandman | 3 | -3/+3 |
Fix for bug #464: O-Menu doesn't close when hitting F11 (Menu) twice | ||||
2002-11-25 | *** empty log message *** | sandman | 3 | -21/+10 |
2002-11-25 | Too dumb to read a man page .. QApplication::setFont is static .. just | sandman | 1 | -6/+7 |
wondering why this ever worked .. | ||||
2002-11-24 | - added the new preload lib to the main Makefile | sandman | 1 | -1/+1 |
- added the new preload lib to the launcher ipk control file | ||||
2002-11-24 | A small library that can be LD_PRELOADed to other applications by the | sandman | 3 | -0/+110 |
launcher to force these applications to use the Opie style/font/window decoration settings. Could also be used for other things in the future... | ||||
2002-11-22 | tr and opie header | llornkcor | 2 | -17/+59 |
2002-11-22 | one (hopefully) last i18n-fix | cniehaus | 1 | -1/+1 |
2002-11-22 | More i18n-fixes | cniehaus | 2 | -8/+2 |
@@ -333,9 +333,7 @@ void AddressbookWindow::setDocument( con switch( QMessageBox::information( this, tr ( "Right file type ?" ), - tr( "The selected File" ) + ( "\n" ) + - tr ("does not end with \".vcf\" ") + ( "\n" ) + - tr ( "Do you really want to open it?" ), + tr( "The selected file \n does not end with \".vcf\" \n. Do you really want to open it?" ), tr( "&Yes" ), tr( "&No" ), QString::null, 0, // Enter == button 0 2 ) ) { // Escape == button 2 @@ -809,7 +807,7 @@ void AddressbookWindow::slotWrapAround() qWarning("Got wrap signal !"); // if ( doNotifyWrapAround ) // QMessageBox::information( this, tr( "End of list" ), -// tr( "End of list. Wrap around now.. !" ) + "\n" ); +// tr( "End of list. Wrap around now...!" ) + "\n" ); } @@ -24,10 +24,6 @@ </sizepolicy> </property> <property stdset="1"> - <name>caption</name> - <string>MyDialog1</string> - </property> - <property stdset="1"> <name>sizeGripEnabled</name> <bool>true</bool> </property> | ||||
2002-11-22 | i18n-bug. With the other way you can't translate in all languages | cniehaus | 1 | -2/+1 |
@@ -800,8 +800,7 @@ void AddressbookWindow::slotNotFound() { qWarning("Got notfound signal !"); QMessageBox::information( this, tr( "Not Found" ), - tr( "Unable to find a contact for this" ) + "\n" - + tr( "search pattern !" ) ); + tr( "Unable to find a contact for this \n search pattern!" ) ); } | ||||
2002-11-22 | i18n-de | cniehaus | 1 | -1/+2 |
2002-11-22 | This is the way tr() should be used. Now even RTL-languages and such | cniehaus | 1 | -1/+1 |
are supported @@ -53,7 +53,7 @@ void DateBookWeekLstHeader::setDate(cons int year,week; calcWeek(d,week,year,onMonday); - labelWeek->setText("W: " + QString::number(week)); + labelWeek->setText(tr( "W: %1" ).arg( ( QString::number(week)) ) ); QDate start=date; QDate stop=start.addDays(6); | ||||
2002-11-22 | tr | llornkcor | 1 | -3/+3 |
2002-11-21 | better way to launch edit personal data | harlekin | 2 | -15/+2 |
2002-11-21 | using now QInterfacePtr as Simon suggested, and another leak fix in datebook ↵ | harlekin | 2 | -6/+7 |
plugin | ||||
2002-11-21 | danish i18n | cniehaus | 3 | -7/+10 |
2002-11-21 | - delete the guiPart object in the destructor | simon | 2 | -0/+2 |
2002-11-21 | - do proper reference counting on the ObexInterface object. reviewed by | simon | 2 | -1/+5 |
sandman | ||||
2002-11-21 | applied one of Simons patches. | cniehaus | 2 | -2/+2 |
2002-11-21 | nothing interesting | eilers | 1 | -1/+1 |
2002-11-21 | The light sensor can now be calibrated "reverse" - less backlight in the | sandman | 1 | -7/+7 |
dark and more backlight in the light | ||||
2002-11-20 | Dont build opiealarm when building for x86 | kergoth | 1 | -0/+1 |
2002-11-20 | Dont build zaurus batteryapplet unless target machine is zaurus | kergoth | 1 | -4/+1 |
2002-11-20 | Create sys v init script symlinks in postinst and remove in prerm rather ↵ | kergoth | 3 | -2/+11 |
than including the links in the ipk | ||||
2002-11-20 | Set DESTDIR to /bin rather than ../../bin/ | kergoth | 1 | -1/+1 |
2002-11-20 | Add opiealarm to new buildsystem | kergoth | 1 | -0/+3 |
2002-11-20 | ipaq->root, ipaq/opiealarm->core/opiealarm | kergoth | 1 | -1/+1 |
2002-11-19 | change popup parent from 0 to this. please test | llornkcor | 1 | -2/+2 |
2002-11-19 | Minor bugfix | eilers | 1 | -2/+4 |
2002-11-18 | Back to main tree. Back to main tree. | eilers | 25 | -1972/+2122 |
Back to main tree. Waiting for moving to feature freeze .. | ||||
2002-11-17 | - enabled the Shutdown button in Shutdown-Settings on OZ | sandman | 2 | -11/+2 |
- enabled the LockKeyState indicator for iPAQs (to the right of the clock applet, since also iPAQs can have keyboards) - kergoth forgot a QT_QWS_EBX -> QT_QWS_SHARP - the launcher binary is now exactly the same on iPAQ and Zaurus | ||||
2002-11-16 | fix for filename paths | llornkcor | 1 | -0/+2 |
2002-11-15 | Fix #423 dealing with strike through and DueDate... | zecke | 1 | -5/+15 |
2002-11-15 | Fix the DueDate button not beeing enabled when it should | zecke | 1 | -0/+1 |