<html>
    <head>
      <base href="https://bugs.freedesktop.org/">
    </head>
    <body>
      <p>
        <div>
            <b><a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - Tiny correction to the .vapi"
   href="https://bugs.freedesktop.org/show_bug.cgi?id=99199#c3">Comment # 3</a>
              on <a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - Tiny correction to the .vapi"
   href="https://bugs.freedesktop.org/show_bug.cgi?id=99199">bug 99199</a>
              from <span class="vcard"><a class="email" href="mailto:corentin@elementary.io" title="Corentin Noël <corentin@elementary.io>"> <span class="fn">Corentin Noël</span></a>
</span></b>
        <pre>(In reply to Tanu Kaskinen from <a href="show_bug.cgi?id=99199#c2">comment #2</a>)
<span class="quote">> Thanks for the patch!

> So "static" was dropped from the declarations. Can you explain why "static"
> shouldn't be used? Do you have any guesses for why "static" was used in the
> first place? I'm sure your patch is correct, but I'd like to understand the
> patches that I apply, and I'm not familiar with Vala syntax.</span >

This syntax was allowed on previous Vala version but this is a misuse of the
"static" keyword. Only variables can be "static" and static means that the same
content of the variable is accessible to any instances of an object.

In Vala, const is the equivalent to preprocessor constant used in C, so here
the right way to declare them is to use const and not static, or here "static
const"</pre>
        </div>
      </p>


      <hr>
      <span>You are receiving this mail because:</span>

      <ul>
          <li>You are the QA Contact for the bug.</li>
          <li>You are the assignee for the bug.</li>
      </ul>
    </body>
</html>