Age | Commit message (Collapse) | Author | Files | Lines |
---|---|---|---|---|
2002-12-29 | just in case my harddisk breaks ;) Still there is no real funktional code, | cniehaus | 8 | -27/+182 |
only GUI-work | ||||
2002-12-29 | add ODict | cniehaus | 1 | -0/+7 |
2002-12-28 | Well, the GUI is done, tomorrow comes the content | cniehaus | 8 | -0/+284 |
2002-12-28 | - refactored a number of classes | mickeyl | 14 | -165/+403 |
- removed dumb polling ==> QSocketNotifier rocks - switched to parsing the daemon stuff in the gui, since libwellenreiter still has problems. | ||||
2002-12-28 | only send the qcop call in the postinst script, if qpe is running | sandman | 18 | -18/+18 |
2002-12-28 | adding i18n-fixes | cniehaus | 1 | -4/+4 |
@@ -61,10 +61,10 @@ MainWindow :: MainWindow( QWidget *p, ch // Create the main menu menu = menuBar(); //new QMenuBar( this ); - menu->insertItem( "&Settings", settings ); - menu->insertItem( "&Edit", edit ); - menu->insertItem( "&Filter", filter ); - menu->insertItem( "&Help", help ); + menu->insertItem( tr( "&Settings" ), settings ); + menu->insertItem( tr( "&Edit" ), edit ); + menu->insertItem( tr( "&Filter" ), filter ); + menu->insertItem( tr( "&Help" ), help ); mgr = new DataManager(); mgr->loadServers(); | ||||
2002-12-28 | @@ -37,7 +37,7 @@ MainWindow :: MainWindow( QWidget *p, ch | cniehaus | 1 | -1/+1 |
showMaximized(); #endif - setCaption( "AQPkg - Package Manager" ); + setCaption( tr( "AQPkg - Package Manager" ) ); // Create our menu help = new QPopupMenu( this ); | ||||
2002-12-28 | added memsets | mjm | 1 | -1/+4 |
2002-12-28 | small fix | cniehaus | 1 | -1/+1 |
2002-12-28 | moving to unsupported | llornkcor | 6 | -579/+0 |
2002-12-28 | securityfix for get_field, updated header file | mjm | 2 | -9/+15 |
2002-12-28 | stupidity error | mjm | 1 | -2/+2 |
2002-12-28 | cleanup | mjm | 3 | -31/+23 |
2002-12-28 | - catch up with new filenames and include paths. | mickeyl | 4 | -110/+9 |
- remove Makefile.in (who added this??) | ||||
2002-12-28 | buffer too small, fixed | mjm | 1 | -1/+1 |
2002-12-28 | cleanup | mjm | 4 | -19/+19 |
2002-12-28 | - include string.h for memcpy | simon | 1 | -0/+2 |
2002-12-28 | - include string.h for memcmp | simon | 1 | -0/+1 |
2002-12-28 | catch up with new filenames and include paths. | mickeyl | 2 | -4/+4 |
2002-12-27 | Changed the menu string from "Home" to "Desktop" -- this was decided at | sandman | 1 | -1/+1 |
the Opie 1.0 meeting | ||||
2002-12-27 | pre-version | mjm | 3 | -0/+57 |
2002-12-27 | upgraded to new libfunctions | mjm | 3 | -24/+23 |
2002-12-27 | cleanup, new protocol, renaming of some functions, GUI has to update! | mjm | 12 | -152/+164 |
2002-12-27 | Clean-up of advanced tab in edit task dialog. Next is QWhatsThis for everything. | drw | 10 | -338/+213 |
2002-12-27 | Fixed bug where refresh lists would crash | andyq | 1 | -1/+2 |
2002-12-27 | fix typo | cniehaus | 1 | -2/+2 |
2002-12-27 | Country ist nicht Bundesland .. ;) | eilers | 1 | -3/+3 |
2002-12-27 | Fixing nullpointer crash if "emails" selected | eilers | 1 | -2/+6 |
2002-12-27 | save 1500 byte. Wow | cniehaus | 1 | -109/+0 |
2002-12-27 | juhu, this should be fully translatable now :) | cniehaus | 7 | -128/+132 |
2002-12-27 | Children and nickname was not shown .. fixed ! | eilers | 1 | -1/+27 |
2002-12-27 | Childrens are now shown in detail view.. | eilers | 2 | -0/+10 |
2002-12-27 | finally found that stupid bug | cniehaus | 2 | -7/+4 |
2002-12-27 | german updates | cniehaus | 8 | -137/+143 |
2002-12-27 | go mickeyl go | cniehaus | 4 | -117/+124 |
2002-12-27 | i18n fix | cniehaus | 1 | -4/+2 |
2002-12-27 | i18n-fixlet | cniehaus | 1 | -4/+0 |
2002-12-27 | update after mine and Tais' i18n-fixes | cniehaus | 65 | -270/+57 |
2002-12-27 | add 2 files | cniehaus | 2 | -0/+57 |
2002-12-27 | *pst* | cniehaus | 1 | -0/+2 |
2002-12-27 | add | llornkcor | 1 | -0/+3 |
2002-12-26 | fix linebreak | cniehaus | 1 | -3/+3 |
2002-12-26 | i18n-fixes | cniehaus | 3 | -12/+0 |
2002-12-26 | adding a nice feature: now the user sees which element he is looking at | cniehaus | 3 | -13/+17 |
2002-12-26 | updates from maple | cniehaus | 32 | -233/+256 |
2002-12-26 | be silent | cniehaus | 1 | -0/+2 |
2002-12-26 | Fixing stupid numerationbug | cniehaus | 1 | -1/+1 |
@@ -40,7 +40,7 @@ dataWidgetUI::dataWidgetUI() : QWidget() int i = 0; for ( QStringList::Iterator it = names->begin() ; it != names->end() ; ++it,i++) { - dataCombo->insertItem( QString::number( i )+" - "+*it ); + dataCombo->insertItem( QString::number( i+1 )+" - "+*it ); } OxydataWidget *oxyDW = new OxydataWidget(this, "OxydataWidget_oxyDW", names); | ||||
2002-12-26 | @@ -15,10 +15,6 @@ | cniehaus | 1 | -4/+0 |
<height>367</height> </rect> </property> - <property stdset="1"> - <name>caption</name> - <string>RemapDlgBase</string> - </property> <property> <name>layoutMargin</name> </property> | ||||
2002-12-26 | updated | cniehaus | 8 | -32/+0 |
2002-12-26 | fixing a strage char | cniehaus | 4 | -68/+68 |