Updates for the Catalog API change.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@37456 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Matt Madia
2010-07-10 11:13:26 +00:00
parent 8d37fd1227
commit 2d6072229e
2 changed files with 4 additions and 7 deletions
+3 -3
View File
@@ -1,11 +1,11 @@
SubDir HAIKU_TOP src tests kits net preflet ; SubDir HAIKU_TOP src tests kits net preflet ;
SimpleTest NetworkSetup : SimpleTest NetworkSetup :
NetworkSetup.cpp NetworkSetup.cpp
NetworkSetupWindow.cpp NetworkSetupWindow.cpp
NetworkSetupProfile.cpp NetworkSetupProfile.cpp
NetworkSetupAddOn.cpp NetworkSetupAddOn.cpp
: be root $(TARGET_LIBSTDC++) liblocale.so : be root $(TARGET_LIBSTDC++) $(HAIKU_LOCALE_LIBS)
; ;
SubInclude HAIKU_TOP src tests kits net preflet InterfacesAddOn ; SubInclude HAIKU_TOP src tests kits net preflet InterfacesAddOn ;
+1 -4
View File
@@ -13,14 +13,12 @@
#define APPLICATION_SIGNATURE "application/x-vnd." SOFTWARE_EDITOR "-" NAME #define APPLICATION_SIGNATURE "application/x-vnd." SOFTWARE_EDITOR "-" NAME
class Application : public BApplication class Application : public BApplication
{ {
public: public:
Application(); Application();
public: public:
BCatalog fCatalog;
void ReadyToRun(void); void ReadyToRun(void);
}; };
@@ -37,7 +35,6 @@ int main()
Application::Application() Application::Application()
: BApplication(APPLICATION_SIGNATURE) : BApplication(APPLICATION_SIGNATURE)
{ {
be_locale->GetAppCatalog(&fCatalog);
} }