By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 1793
Collapse All | Expand All

(-)k9copy/k9devices/k9cddrive.cpp (-2 / +2 lines)
Lines 129-136 Link Here
129
129
130
void k9CdDrives::eject(const TQString & device) {
130
void k9CdDrives::eject(const TQString & device) {
131
    TDEProcess *process =new TDEProcess();
131
    TDEProcess *process =new TDEProcess();
132
    if (k9Tools::checkProgram("kdeeject"))
132
    if (k9Tools::checkProgram("tdeeject"))
133
        *process <<"kdeeject" << device;
133
        *process <<"tdeeject" << device;
134
    else    
134
    else    
135
        *process <<"eject" << device;
135
        *process <<"eject" << device;
136
    process->start();
136
    process->start();

Return to bug 1793