diff --git a/src/frontends/Application.h b/src/frontends/Application.h index 90bd21b507..a682207c05 100644 --- a/src/frontends/Application.h +++ b/src/frontends/Application.h @@ -204,7 +204,7 @@ public: * @param fd socket descriptor (file/socket/etc) */ typedef boost::function SocketCallback; - virtual void registerSocketCallback( int fd, SocketCallback func) = 0; + virtual void registerSocketCallback(int fd, SocketCallback func) = 0; /** * remove a I/O read callback diff --git a/src/frontends/qt4/BulletsModule.h b/src/frontends/qt4/BulletsModule.h index 71838f4ec9..b0577fb6c4 100644 --- a/src/frontends/qt4/BulletsModule.h +++ b/src/frontends/qt4/BulletsModule.h @@ -15,7 +15,6 @@ #include "ui_BulletsUi.h" #include "Bullet.h" -#include #include @@ -24,6 +23,7 @@ namespace lyx { class BulletsModule : public QWidget, public Ui::BulletsUi { Q_OBJECT + public: /// BulletsModule(QWidget * parent = 0, const char * name = 0, Qt::WFlags fl = 0); @@ -39,7 +39,6 @@ Q_SIGNALS: void changed(); protected Q_SLOTS: - void on_bulletsizeCO_activated(int level); void on_customCB_clicked(bool); void on_customLE_textEdited(const QString &); @@ -52,12 +51,11 @@ private: std::string const & fname); /// store results - boost::array bullets_; + Bullet bullets_[4]; int current_font_; int current_char_; }; - } // namespace lyx #endif // BULLETSMODULE_H