View | Details | Raw Unified | Return to bug 201336
Collapse All | Expand All

(-)b/krusader/Panel/panelfunc.cpp (-1 / +1 lines)
Lines 100-106 class FilePathValidator : public QValidator Link Here
100
{
100
{
101
public:
101
public:
102
    virtual State validate(QString &input, int &pos) const {
102
    virtual State validate(QString &input, int &pos) const {
103
        return input.isEmpty() ? Invalid : Acceptable;
103
            return input.isEmpty() ? Intermediate : Acceptable;
104
    }
104
    }
105
};
105
};
106
106

Return to bug 201336