Skip to content
Snippets Groups Projects
Commit b21701ce authored by Philippe Canal's avatar Philippe Canal
Browse files

remove trailing ; to make gcc 3.4.5 happy

git-svn-id: http://root.cern.ch/svn/root/trunk@16742 27541ba8-7e3a-0410-8455-c3a389f83636
parent 14f3e93f
No related branches found
No related tags found
No related merge requests found
// @(#)root/qt:$Name: $:$Id: TQtWidget.h,v 1.14 2006/03/24 15:31:10 antcheva Exp $ // @(#)root/qt:$Name: $:$Id: TQtWidget.h,v 1.15 2006/08/30 14:45:44 antcheva Exp $
// Author: Valeri Fine 23/01/2003 // Author: Valeri Fine 23/01/2003
/************************************************************************* /*************************************************************************
...@@ -268,6 +268,6 @@ inline void TQtWidget::InvertBit(UInt_t f) { fBits ^= f & kBitMask; ...@@ -268,6 +268,6 @@ inline void TQtWidget::InvertBit(UInt_t f) { fBits ^= f & kBitMask;
inline void TQtWidget::EnableSignalEvents (UInt_t f){ SetBit (f); } inline void TQtWidget::EnableSignalEvents (UInt_t f){ SetBit (f); }
inline void TQtWidget::DisableSignalEvents (UInt_t f){ ResetBit(f); } inline void TQtWidget::DisableSignalEvents (UInt_t f){ ResetBit(f); }
inline Bool_t TQtWidget::IsSignalEventEnabled(UInt_t f) const { return TestBit (f); } inline Bool_t TQtWidget::IsSignalEventEnabled(UInt_t f) const { return TestBit (f); }
inline void TQtWidget::EmitSignal(UInt_t f) {if (IsSignalEventEnabled(f)) EmitTestedSignal();}; inline void TQtWidget::EmitSignal(UInt_t f) {if (IsSignalEventEnabled(f)) EmitTestedSignal();}
#endif #endif
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment