|
From: CVS C. to T. <the...@li...> - 2011-01-16 21:43:43
|
Revision: 617
http://themis.svn.sourceforge.net/themis/?rev=617&view=rev
Author: mark_hellegers
Date: 2011-01-16 21:43:37 +0000 (Sun, 16 Jan 2011)
Log Message:
-----------
Fixed the reading of the tab history depth setting.
Modified Paths:
--------------
trunk/themis/framework/ThemisTab.cpp
Modified: trunk/themis/framework/ThemisTab.cpp
===================================================================
--- trunk/themis/framework/ThemisTab.cpp 2011-01-16 19:20:14 UTC (rev 616)
+++ trunk/themis/framework/ThemisTab.cpp 2011-01-16 21:43:37 UTC (rev 617)
@@ -29,7 +29,7 @@
fLabel = new BString( "(untitled)" );
int8 histdepth;
- AppSettings->FindInt8( "TabHistoryDepth", &histdepth );
+ AppSettings->FindInt8("PrefsTabHistoryDepth", &histdepth);
fHistory = new TabHistory( histdepth );
fFavIcon = new BBitmap( BRect( 0, 0, 15, 15 ), B_RGB32 );
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|