X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=lib%2FcreaDevManagerLib%2FwxCDMCodeFileDescriptionPanel.cpp;h=4bd8f14d31a7ac0fa5ce7469c9b7253d5d23b4b4;hb=refs%2Fheads%2Fvtk7itk4wx3-mingw64;hp=723f229335a382655594f13587d738edaf88dc24;hpb=e992e2085f2a767ab390c3168599047de2ef1d3b;p=crea.git diff --git a/lib/creaDevManagerLib/wxCDMCodeFileDescriptionPanel.cpp b/lib/creaDevManagerLib/wxCDMCodeFileDescriptionPanel.cpp index 723f229..4bd8f14 100644 --- a/lib/creaDevManagerLib/wxCDMCodeFileDescriptionPanel.cpp +++ b/lib/creaDevManagerLib/wxCDMCodeFileDescriptionPanel.cpp @@ -80,7 +80,15 @@ bool wxCDMCodeFileDescriptionPanel::Create( CreateControls(); // this part makes the scrollbars show up this->FitInside(); // ask the sizer about the needed size + +//EED 2017-09-16 Migration wxWidgets 2.8 to 3.0 +#if wxMAJOR_VERSION <= 2 this->SetScrollRate(5, 5); +#else + printf ("EED wxCDMPackageDescriptionPanel::Create Change 05\n"); + //... +#endif + return TRUE; }