Constants exported by default now (again)
[sdlgit/SDL-Site.git] / pages / SDL-TTF.html-inc
index 915de49..6fca4a9 100644 (file)
 </div>
 <h1 id="CONSTANTS">CONSTANTS</h1><p><a href="#TOP" class="toplink">Top</a></p>
 <div id="CONSTANTS_CONTENT">
-<p>The constants are not exported by default. You can export them into your namespace by doing:</p>
-<pre> use SDL::TTF qw(:hinting :style);
+<p>The constants are exported by default. You can avoid this by doing:</p>
+<pre> use SDL::TTF ();
+
+
 
-</pre>
-<p>or</p>
-<pre> use SDL::TTF ':all';
 
 </pre>
-<p>or access them directly:</p>
+<p>and access them directly:</p>
 <pre> SDL::TTF::TTF_HINTING_NORMAL;
 
 </pre>