summaryrefslogtreecommitdiff
path: root/noncore/apps/advancedfm
AgeCommit message (Collapse)AuthorFilesLines
2007-01-26Each file in this commit exhibit an example of what prevent callserik1-1/+1
'reverse inull'. All that means is that a pointer gets dereferenced. Then a pointer gets checked for validity before being dereferenced again. This almost always points to shenanigans. For example, the konsole.cpp file has this konsoleInit() call which passes in a const char** shell variable. Since it is a double pointer the programmer who wrote the code made the mistake of mixing the checking of the pointer and the pointer that points to the pointer. This commit attempts to correct that. Of course there are other instances of the same thing. But they all boil down to a small mistake which might have produced strange side effects.
2007-01-19Every file in this commit has a change to check the return value of a call.erik1-2/+3
2007-01-10BUG: The case statement was using err to figure out what to say abouterik1-1/+1
why sendfile didn't work. Since err is only the return value of sendfile this meant that it never reported the right thing because it can only be -1 at this point. What the author probably wanted to do was look at errno since that is what the man page says will have the real error info. FIX: Switch the case statement to use errno.
2006-12-30Fix for bug# 0001553 Submited by Paul Eggletonkorovkin3-27/+506
avancedfm uses FileInfoDialog and QFileInfo to display the selected file information.
2005-08-11add opie-smbllornkcor2-13/+32
2005-06-24s,cardmon/pcmcia,pcmcia,mickeyl1-1/+1
2005-05-16Resource -> OResourcedrw2-30/+26
2005-04-16Opie/X11:zecke1-1/+1
-Do not add -lqte this is qmake's job
2005-03-24cd to sd or mmcllornkcor1-2/+7
2005-03-21Fix for bug #1613 - scale toolbar iconsdrw1-6/+14
2005-03-02Scale icons approprtelydrw1-7/+7
2005-02-06fix #1499 - rename workingllornkcor2-36/+5
2004-12-24Repair damage done by a broken replace program. Note to self: Never use ↵mickeyl1-148/+1
anything other than sed! Merry Christmas!
2004-12-24qmake 1.08a has more rigid syntax checking and chokes on our .pro filesmickeyl1-1/+148
2004-10-14case 0: it is a label and not a statement, it doesn't need ';' but ':' every ↵zecke1-4/+4
decent c compiler produced in the last twenty years will bitch about it...
2004-10-13add proper case handlingllornkcor1-13/+16
2004-10-13fix movellornkcor1-1/+3
2004-10-06if user clicks dialog's X, dont go ahead and do the actionsllornkcor1-57/+80
2004-09-28ugly workaround for bigscreen/smallscreen widget differencesllornkcor2-44/+48
2004-09-26fix view menullornkcor1-5/+5
2004-09-25fixllornkcor4-16/+13
2004-09-25remove not needed boolllornkcor2-11/+0
2004-09-25optillornkcor1-17/+17
2004-09-25not hardcoded pathllornkcor3-37/+7
2004-09-25change messagellornkcor1-3/+4
2004-09-25removellornkcor4-122/+108
2004-09-25formatted stringsllornkcor2-8/+8
2004-09-25fix move overwritellornkcor1-54/+60
2004-09-25uptodatellornkcor1-1/+0
2004-09-25change focus for editllornkcor3-40/+46
2004-09-25redunancyllornkcor2-28/+4
2004-09-25constllornkcor1-1/+1
2004-09-25unusedllornkcor1-2/+2
2004-09-25more redundant codellornkcor1-8/+3
2004-09-25move kerypress to keyreleasellornkcor1-5/+7
2004-09-25opti function and fixllornkcor2-88/+47
2004-09-25move redundant code into one functionllornkcor2-50/+19
2004-09-25fix stuffllornkcor5-376/+361
2004-09-18add refresh menuitemllornkcor3-1/+8
2004-09-18fix stuff, including #1404llornkcor4-42/+71
2004-08-18-Remove #ifdef for NOQUICKLAUNCH as OPIE_EXPORT_APP works forzecke4-51/+31
both cases already. -Use QPEApplication::setStylusOperation for RightOnHold feature instead of custom code
2004-07-28use safer method to set file perms after copyllornkcor1-2/+2
2004-04-04convert to Opie Debugging Frameworkmickeyl6-898/+888
2004-03-28remove hardcoded build types "debug" and "release". these are set by the ↵mickeyl1-2/+2
build system
2004-03-25initialize earilierllornkcor1-175/+172
2004-03-25Do not rely on Qt magic.zecke1-2/+3
Get the item, take it from the list, delete it
2004-03-25Wims patch for changing the margins to give more spacezecke2-6/+12
and to fix renaming
2004-03-14Fix up depends on LIBOPIE1zecke2-6/+6
Proper signature for signal and slots and namespaces
2004-03-13Namespace changes for Appszecke7-27/+22
QAshMoney and Reader need to be valgrinded
2004-03-02applied the patch generated by the optimize_connect script fromalwin4-30/+30
TT.