]> code.citadel.org Git - citadel.git/commitdiff
Added "Connected to xxxxx" message
authorArt Cancro <ajc@citadel.org>
Sat, 13 Mar 1999 04:25:43 +0000 (04:25 +0000)
committerArt Cancro <ajc@citadel.org>
Sat, 13 Mar 1999 04:25:43 +0000 (04:25 +0000)
daphne/main.cpp

index c8d33c44b1c2c4a6b7c48854fb28356a3e678698..64e0c566c8b81fb307d3caef81a463b9b4680ff8 100644 (file)
@@ -248,7 +248,7 @@ void MyFrame::InitToolBar(wxToolBar* toolBar) {
                        currentX, -1, (wxObject *) NULL, "Print");
        currentX += width + 5;
        toolBar->AddSeparator();
-       toolBar->AddTool(7, *bitmaps[7], wxNullBitmap, TRUE,s
+       toolBar->AddTool(7, *bitmaps[7], wxNullBitmap, TRUE,
                 currentX, -1, (wxObject *) NULL, "Help");
 
        toolBar->Realize();
@@ -327,7 +327,7 @@ void MyFrame::OnConnect(wxCommandEvent& unused) {
        } else {
                retval = citadel->attach("uncnsrd", "citadel");
                if (retval == 0) {
-                       SetStatusText("** connected **");
+                       SetStatusText("Connected to " + citadel->HumanNode);
                        new TestWindow(citadel, this);
                        new UserLogin(citadel, this);
                } else {