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

View File

@ -1,11 +1,11 @@
SubDir HAIKU_TOP src tests kits net preflet ;
SimpleTest NetworkSetup :
NetworkSetup.cpp
SimpleTest NetworkSetup :
NetworkSetup.cpp
NetworkSetupWindow.cpp
NetworkSetupProfile.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 ;

View File

@ -13,14 +13,12 @@
#define APPLICATION_SIGNATURE "application/x-vnd." SOFTWARE_EDITOR "-" NAME
class Application : public BApplication
class Application : public BApplication
{
public:
Application();
public:
BCatalog fCatalog;
void ReadyToRun(void);
};
@ -37,7 +35,6 @@ int main()
Application::Application()
: BApplication(APPLICATION_SIGNATURE)
{
be_locale->GetAppCatalog(&fCatalog);
}