There are a few small changes from myself, such as adding a copyright for Maxime in files with bigger changes. Also because this patch was so old I had to do some manual patching, and added back the title and description on the TGA and TIFF translators. I think this improves things a lot, though there is still some work to do to improve the consistency of the translator settings views. I think this mostly fixes #2117, though I may leave the ticket open until a few more things are resolved. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@35769 a95241bf-73f2-0310-859d-f6bbb57e9c96
19 lines
350 B
C++
19 lines
350 B
C++
/*
|
|
* Copyright 2004-2007, Axel Dörfler, [email protected]. All rights reserved.
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
#ifndef CONFIG_VIEW_H
|
|
#define CONFIG_VIEW_H
|
|
|
|
|
|
#include <View.h>
|
|
|
|
|
|
class ConfigView : public BView {
|
|
public:
|
|
ConfigView(uint32 flags = B_WILL_DRAW);
|
|
virtual ~ConfigView();
|
|
};
|
|
|
|
#endif /* CONFIG_VIEW_H */
|