Hello. I'm using Visual Studio 2010 with vs-addin-1.2.2. I suppose, that addin should generate moc-files automatically when finds Q_OBJECT macro. But I added simple class and got linker errors. Moc-files were generated properly with other classes early, but not now. What's wrong? Is there any way to force generating?

QwtFFT.h
Qt Code:
  1. #pragma once
  2. #include "qwt_plot.h"
  3. class QwtFFT :
  4. public QwtPlot
  5. {
  6. Q_OBJECT
  7. public:
  8. QwtFFT(QWidget *);
  9. ~QwtFFT(void);
  10. };
To copy to clipboard, switch view to plain text mode 

QwtFFT.c
Qt Code:
  1. #include "QwtFFT.h"
  2.  
  3. QwtFFT::QwtFFT(QWidget *parent) : QwtPlot(parent)
  4. {
  5. }
  6.  
  7. QwtFFT::~QwtFFT(void)
  8. {
  9. }
To copy to clipboard, switch view to plain text mode 

QWT_DLL defined. Thanks