]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/tools/build/example/qt/qt4/moccable-cpp/main.cpp
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / boost / tools / build / example / qt / qt4 / moccable-cpp / main.cpp
index ffc96cc3e636942a5c95ddcf111c3d30fc26dd2f..f8d4a43e22fcc425d64bf2280905f39c46cb4b1b 100644 (file)
@@ -1,7 +1,7 @@
 // Copyright Vladimir Prus 2005.
 // Distributed under the Boost Software License, Version 1.0.
-// (See accompanying file LICENSE_1_0.txt
-// or copy at http://www.boost.org/LICENSE_1_0.txt)
+// (See accompanying file LICENSE.txt
+// or copy at https://www.bfgroup.xyz/b2/LICENSE.txt)
 
 #include <qwidget.h>
 #include <qpushbutton.h>
@@ -13,10 +13,10 @@ class My_widget : public QWidget
 {
     Q_OBJECT
 public:
-    My_widget() : QWidget() 
+    My_widget() : QWidget()
     {
         QPushButton* b = new QPushButton("Push me", this);
-    
+
         connect(b, SIGNAL(clicked()), this, SLOT(theSlot()));
     }
 
@@ -24,8 +24,8 @@ private slots:
     void theSlot()
     {
         std::cout << "Clicked\n";
-    }    
-    
+    }
+
 };
 
 int main(int ac, char* av[])