Minor cleanup

This commit is contained in:
Oliver Duis
2011-04-07 21:27:35 +02:00
parent 33c0af3010
commit b38fe14fe7
2 changed files with 1 additions and 6 deletions

View File

@@ -27,11 +27,6 @@ FileBrowserEntry::FileBrowserEntry (Thumbnail* thm, const Glib::ustring& fname)
exifline = thumbnail->getExifString ();
}
void ThumbBrowserEntry::obtainThumbnailImage () {
preview = thumbnail ? (guint8*) thumbnail->getThumbnailImage (prew, preh) : NULL;
}
void ThumbBrowserEntry::obtainThumbnailSize () {
if (thumbnail)

View File

@@ -40,7 +40,7 @@ protected:
int sideMargin;
int lowerMargin;
guint8* preview;
guint8* preview; // holds the preview image. used in updateBackBuffer. TODO Olli: Make a cache to reduce mem significantly
Glib::ustring dispname;