Source Code (Use browser search to find items of interest.)

Class Index

abbrowser'Command (./kdepim/abbrowser/undo.h:13)

class Command 
{
public:
  virtual ~Command() {};
  virtual QString name() { return ""; };
  virtual void redo() {}; // egcs requires these methods to have 
  virtual void undo() {}; // implementations (Seems like a bug)
};


abbrowser'Command::undo() (./kdepim/abbrowser/undo.h:19)

  virtual void undo() {}; // implementations (Seems like a bug)
};