X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2FinsetgraphicsParams.C;h=0218ac1ddcdc6a1e2108181490417cf49713dab2;hb=487f6eb3b43746460d090f643cd1e39f2d93a74b;hp=54a2a7a1d028b71c7e3bdd3b19167043f683bb17;hpb=06dda98e496347914e7bb196c63342466bf0bde8;p=lyx.git diff --git a/src/insets/insetgraphicsParams.C b/src/insets/insetgraphicsParams.C index 54a2a7a1d0..0218ac1ddc 100644 --- a/src/insets/insetgraphicsParams.C +++ b/src/insets/insetgraphicsParams.C @@ -1,10 +1,9 @@ -// -*- C++ -*- /* This file is part of * ================================================= * * LyX, The Document Processor * Copyright 1995 Matthias Ettrich. - * Copyright 1995-2000 The LyX Team. + * Copyright 1995-2001 The LyX Team. * * This file Copyright 2000 Baruch Even * ================================================= */ @@ -146,34 +145,34 @@ void InsetGraphicsParams::testInvariant() const // Filename might be empty (when the dialog is first created). // Assert(!filename.empty()); - Assert(display == COLOR || + lyx::Assert(display == COLOR || display == MONOCHROME || display == GRAYSCALE || display == NONE ); - Assert(widthResize == DEFAULT_SIZE || + lyx::Assert(widthResize == DEFAULT_SIZE || widthResize == CM || widthResize == INCH || widthResize == PERCENT_PAGE || widthResize == PERCENT_COLUMN ); - Assert(heightResize == DEFAULT_SIZE || + lyx::Assert(heightResize == DEFAULT_SIZE || heightResize == CM || heightResize == INCH || heightResize == PERCENT_PAGE ); - Assert(widthSize >= 0.0); - Assert(heightSize >= 0.0); + lyx::Assert(widthSize >= 0.0); + lyx::Assert(heightSize >= 0.0); // Angle is in degrees and ranges -360 < angle < 360 // The reason for this is that in latex there is a meaning for the // different angles and they are not necessarliy interchangeable, // it depends on the rotation origin. - Assert(rotateAngle < 360); - Assert(rotateAngle > -360); + lyx::Assert(rotateAngle < 360); + lyx::Assert(rotateAngle > -360); }