mysql_db: get not more than num_fields fields from a row
I haven't tested the old approach, because i have never installed
or used mysql. But it's nice to see that it actually works with
this small patch.
committer: Markus Bröker <mbroeker@largo.homelinux.org>
#ifndef VIEW_HPP
#define VIEW_HPP
#include "ui_maindialog.h"
class TView : public QDialog, Ui_Dialog {
Q_OBJECT
public:
TView (QWidget * parent = 0);
virtual ~TView ();
protected slots:
void up ();
void down ();
private:
};
#endif