[gnome-devel-docs] Removed a style="numbered" from a code snippet.



commit 3c3b8deb4dab94c250dca82e90cc63312cc441f6
Author: Tiffany Antopolski <tiffany antopolski gmail com>
Date:   Sun Jun 10 20:26:21 2012 -0400

    Removed a style="numbered" from a code snippet.

 platform-demos/C/statusbar.js.page |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/platform-demos/C/statusbar.js.page b/platform-demos/C/statusbar.js.page
index 3926caf..ade926d 100644
--- a/platform-demos/C/statusbar.js.page
+++ b/platform-demos/C/statusbar.js.page
@@ -144,7 +144,7 @@ const StatusbarExample = new Lang.Class({
     <p>Here we create the Gtk.Statusbar, and push a message to it to start off with. Then we give it its own narrow frame at the bottom of the window.</p>
     <p>Every message needs to have a context id, which is an integer value you can get from the statusbar with the get_context_id() function. Its only parameter is the string value you use to describe that particular context id. Normally, you'll get a new context id for different kinds of messages, so that you can use the remove() function to remove a specific message and not just the most recent one on the stack. This is a simple example with only one kind of message, though, so we're just using one for everything.</p>
     <p>We use the push() function to push a new message onto the stack. Its first parameter is the context id, and its second is the message.</p>
-    <code mime="text/javascript" style="numbered"><![CDATA[
+    <code mime="text/javascript"><![CDATA[
         // Assemble the frames into the paned interface
         this._panes.pack1 (this._topFrame, true, false);
         this._panes.pack2 (this._barFrame, false, false);



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]