DocsWidget -> RecentDocsWidget

Rename DocsWidget to RecentDocsWidget (as widgets for most used docs,
docs related to the currently open documents, etc. may be added in the
future), and change the title so that it doesn't abbreviate 'Docs' (for
consistency with the overlay).
This commit is contained in:
Siegfried-Angel Gevatter Pujals 2009-07-27 18:18:17 +02:00 committed by Marina Zhurakhinskaya
parent 96cf9c739e
commit ff6ee2c0c2
2 changed files with 4 additions and 4 deletions

View File

@ -64,7 +64,7 @@
<owner>gnome-shell</owner>
<type>list</type>
<list_type>string</list_type>
<default>[imports.ui.widget.ClockWidget,imports.ui.widget.AppsWidget,imports.ui.widget.DocsWidget]</default>
<default>[imports.ui.widget.ClockWidget,imports.ui.widget.AppsWidget,imports.ui.widget.RecentDocsWidget]</default>
<locale name="C">
<short>The widgets to display in the sidebar</short>
<long>

View File

@ -327,17 +327,17 @@ AppsWidget.prototype = {
}
};
function DocsWidget() {
function RecentDocsWidget() {
this._init.apply(this, arguments);
}
DocsWidget.prototype = {
RecentDocsWidget.prototype = {
__proto__ : LauncherWidget.prototype,
_init : function() {
Widget.prototype._init.apply(this, arguments);
this.title = "Recent Docs";
this.title = "Recent Documents";
this.actor = new Big.Box({ spacing: 2 });
this._recentManager = Gtk.RecentManager.get_default();